1、首先,在git.bash文件中输入命令:
git config --global credential.helper store
2、然后你会发现你的C:\Users\用户名.gitconfig文件(或者是类似名称的)会多出以下代码:
[credential]
helper = store**
3、使用git pull或者git push命令后,根据提示输入帐号和密码后,这时你的本地生成一个类似C:\Users\用户名.git-credentials文件,用于记录帐号密码。
4、完成以上几步,下次就不用再次输帐号密码了。
评论 (0)