git push取消密码

在进行git push的时候,总是会提示输入github帐号和密码。

原因是在github创建repo后,本地工程上传到github使用的是https协议,因此会有上述的问题。

具体解决办法:

1 在当前工程保存帐号密码:

vim .git-credentials

https://{username}:{password}@github.com

git config --global credential.helper store

2 直接修改当前工程.git的配置

前提是已经将本地的public key保存在了github

vim .git/config

1
2
[remote "origin"]
url = 这里粘贴github上的ssh链接
Licensed under CC BY-NC-SA 4.0
Built with Hugo
Theme Stack designed by Jimmy