ssh配置的格式

时间:2014-08-22 08:22:44

标签: git github ssh

我遵循了一个教程,所以我可以在同一台机器上有两个独立的git hub用户,我在ssh文件夹中创建了一个配置:

#Default GitHub
Host <span class="skimlinks-unlinked">github.com</span>
HostName <span class="skimlinks-unlinked">github.com</span>
User git
IdentityFile ~/.ssh/id_rsa
Host github-panthro
HostName <span class="skimlinks-unlinked">github.com</span>
User git
IdentityFile ~/.ssh/id_rsa_panthro

但是现在当我尝试ssh时我得到了错误:

config line 3: garbage at end of line; "class".

我已经清理了删除空格的类,但错误仍然存​​在。

1 个答案:

答案 0 :(得分:3)

按如下方式删除Span,它应该可以工作。我有类似的配置文件。

Host github.com
HostName github.com
User git
IdentityFile ~/.ssh/id_rsa
Host github-panthro
HostName github.com
User git
IdentityFile ~/.ssh/id_rsa_panthro