我的ssh设置:

C:\ Users \ maether.ssh \ config

host maether
        user git
        hostname xx.xx.xx.xx
        identityfile ~/.ssh/maether/maether
        Port xxxxx

我的RSA文件位于文件夹中:c:\Users\maether\.ssh\maether\
我打开cmd并输入:
ssh maether

通常我应该得到我的git存储库的答案,但是我得到了:



如果我输入echo %HOME%,我得到C:\Users\maether\.ssh
我在另一台计算机上采用相同的方式,但它可以正常工作,但是现在出现此故障:no address associated with name
我会忘记什么?

最佳答案

它应该是

c:\Users\maether\.ssh\config


c:\Users\maether.ssh\config

注意缺少的\

10-07 14:16