红联Linux门户
Linux帮助

git push提示输入用户名和密码在Linux下的解决办法

发布时间:2017-05-11 09:52:44来源:linux网站作者:小煞Xs
本人由于维护一些项目,经常需要提交代码到github服务器,当某些仓库项目不属于ssh协议时,就会出现Git push要求输入用户名和密码的情况,搜了一下给了个解决办法,这里记录一下。
 
xs@xs-MacBookPro:~/test$ git push origin master
Username for 'https://github.com':
 
Linux下:
1.在用户跟目录下~/创建文件.git-credentials,并打开编辑,输入内容:
https://{username}:{password}@github.com
#例如https://X-s:github110@github.com
 
2.在终端下执行git config --global credential.helper store
 
3.可以看到~/.gitconfig文件,会多了一项:
[credential]
helper = store
 
4.此时再去push则不用输入账户名和密码了
xs@xs-MacBookPro:~/test$ git push origin master
Everything up-to-date
 
本文永久更新地址:http://www.linuxdiyf.com/linux/30686.html