码迷,mamicode.com
首页 > 其他好文 > 详细

git push每次都需要输入帐号密码的解决方法

时间:2020-11-25 12:33:41      阅读:2      评论:0      收藏:0      [点我收藏+]

标签:用户名   mail   git bash   word   tps   href   ref   ***   解决   

有时候git明明已经配置了用户名和密码,但在项目中,有时候pull和push的时候却每次都要提示输入用户名和密码,很浪费时间。

解决办法

在git bash中输入:

git config --global credential.helper store

执行完上面的git命令后,在命令行正常执行pull ,push,如果是在以上操作完之后第一次执行pull push,需要输入一次用户名密码,以后不再需要输入。

第一次向新的URL输入用户名密码之后会发现 .git-credentials中追加了类似 https://username:password@hello.com的内容

vim查看home路径中的.gitconfig,会在之前

[user]
name =**********

email=***********

的基础上多出

[credential]
helper = store

git push每次都需要输入帐号密码的解决方法

标签:用户名   mail   git bash   word   tps   href   ref   ***   解决   

原文地址:https://www.cnblogs.com/liliuyu/p/14016350.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!