在使用TortoiseGit的过程中,发下每次push或者pull都要重复输入账号密码,非常麻烦
怎么设置记住密码
在[系统盘]:Users[你的用户名](比如C:UserAdministrator里面的.gitconfig)下面,有一个.gitconfig文件,这个是记录你的git配置信息的。
在该文件后面加上
1
2
|
[credential] helper = store |
设置完后,输入一次密码就不会再要求输入,但是会生成一个.git-credentials文件,里面记录了你的用户名和密码
.git-credentials文件,该文件明文记录了你输入的账号密码
1
|
https: / / username:password@gitee.com |
参考https://www.cnblogs.com/stonehat/p/6907300.html