sh 将SSH密钥添加到代理。此步骤也可用于避免在执行git push / pull时输入SSH密码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 将SSH密钥添加到代理。此步骤也可用于避免在执行git push / pull时输入SSH密码相关的知识,希望对你有一定的参考价值。

# copy ssh key to ~/.ssh/id_rsa
# chmod 400  ~/.ssh/id_rsa

# To add the ssh-key to the ssh-agent, the ssh-agent must be running. 
# If the ssh-agent isn't already running, start the ssh-agent.

eval "$(ssh-agent -s)"

#Add your SSH key to the ssh-agent. If you used an existing SSH key rather than generating a new SSH key, you'll need to replace id_rsa in the command with the name of your existing private key file.

ssh-add ~/.ssh/id_rsa

# https://help.github.com/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/

以上是关于sh 将SSH密钥添加到代理。此步骤也可用于避免在执行git push / pull时输入SSH密码的主要内容,如果未能解决你的问题,请参考以下文章

sh 登录时自动添加ssh密钥:将此文件保存到〜/ .bashrc

sh ssh-pass:使用密码存储中的密码短语向您的代理添加SSH密钥,无需剪贴板

sh 将密码添加到SSH密钥

如何避免每次推送或拉取代码时都添加 ssh 密钥

sh [ssh-copy-id和ssh组合]这是一个粗略的脚本,如果需要,它会将本地ID密钥添加到客户端的授权密钥。

将 ssh 密钥添加到 Elastic Beanstalk