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 Git记住账号密码 http://example.com/posts/dcbfefd3/ 发布于 2019年11月30日 许可协议 使用git拉取时出现SSL_connect错误 上一篇 基于DosBox的汇编环境部署 下一篇 Please enable JavaScript to view the comments