如何将github中的令牌添加到我的git配置文件中,这样每次我想将我的提交推送到我的Github时,我都不必输入我的用户名和密码?
编辑: 我已经完成了那些文章所说的一切:https://help.github.com/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/ https://help.github.com/articles/adding-a-new-ssh-key-to-your-github-account/
在我的计算机上安装了这个特殊的SSH +它被添加到github上,当我尝试git push origin master
终端要求我输入用户名时。有办法解决这个问题吗?我的意思是我希望它能够使用我的SSH密钥,每次我提交我的提交时都会记录日志。
答案 0 :(得分:1)
对于您想要的功能,最好的方法是connect with SSH。
在较高的层面,以下是步骤:
cd~ / .ssh
ssh-keygen -t rsa -b 4096 -C" your_email@example.com"