Gitlab的SSH密钥问题

时间:2017-03-17 22:22:45

标签: ssh key gitlab

我正在尝试安装Gitlab客户端,当它要求创建新的私钥和公钥时,我选择了一个自定义文件夹,而不是选择默认位置。现在我不知道如何将其恢复到默认位置,所以我不需要做更多的配置。 如果我无法恢复,我知道我需要配置我的〜/ .ssh / config但是这个文件在哪里我不确定? 有人可以指导我吗?

由于

1 个答案:

答案 0 :(得分:0)

您应该按~/.ssh/config创建新的nano ~/.ssh/config文件,否则(默认情况下此文件不存在)。然后根据需要配置

Host github.com
User git
Hostname <e.g. github.com>
PreferredAuthentications publickey
IdentitiesOnly yes
IdentityFile <file-location, e.g. ~/.ssh/custom>

More details here