设置记住密码(默认15分钟):
git config –global credential.helper cache
如果想自己设置时间,可以这样做:
git config credential.helper ‘cache –timeout=3600’
这样就设置一个小时之后失效
长期存储密码:
git config --global credential.helper store
设置完之后,在系统%Home%目录下,(也就是cmd运行时默认的那个文件目录) .gitconfig文件会增加一段代码。
之后重启 git bash,第一次 git push 需要输入用户名和密码,之后的git push就不需要输入用户名和密码了,
如果还是不行,就在%home%目录下,运行git bash 输入命令 touch .git-credentials 创建.git-credentials文件,不需要再文件中编辑任何代码,这个文件是用来存储用户名和密码,在后续的git push中,只要输入用户名和密码就自动会记录到这个文件中。