Git记住账号密码
1.永久记住密码
git config --global credential.helper store
会在用户主目录的.gitconfig文件中加入下面的配置。如果没有–global,则加在当前项目下的.git/config文件中。
[credential]
helper = store
2.临时记住密码
采用默认的方式会记住密码15分钟
git config --global credential.helper cache
也可以自己指定时长(timeout单位为秒)
git config --global credential.helper 'cache -timeout=60'
3.录入账密
执行完上述任意一步骤后 还需执行如下步骤才能记录账号密码
git pull
….如遇到其他情况再行补充
Git记住账号密码
http://example.com/posts/dcbfefd3/