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