美文网首页
多台电脑共用一个ssh密钥

多台电脑共用一个ssh密钥

作者: 日月丽天 | 来源:发表于2019-08-25 11:16 被阅读0次

    一,将生成的ssh密钥复制出来

    将生成的ssh密钥电脑的ssh文件复制出来放在新电脑的.ssh目录里

    目录图

    二,添加密钥到本地

    执行git命令:ssh-add ~/.ssh/id_rsa
    若执行ssh-add /path/to/xxx.pem是出现这个错误:Could not open a connection to your authentication agent,则先执行如下命令即可:
    ssh-agent bash 或者先执行 eval ssh-agent(是~键上的那个`)

    如果idea中Terminal终端无法执行GIT命令,如 touch README.md报如下错误:
    若执行ssh-add /path/to/xxx.pem是出现这个错误:Could not open a connection to your authentication agent,则先执行如下命令即可:
    ssh-agent bash 或者先执行 eval ssh-agent(是~键上的那个`)

    三,配置idea

    idea配置

    重启,然后就可以用git了。

    相关文章

      网友评论

          本文标题:多台电脑共用一个ssh密钥

          本文链接:https://www.haomeiwen.com/subject/poveqqtx.html