git如何记住账号密码
2020-12-03 本文已影响0人
网络小乙
HTTPS记住密码
- 永久记住密码
上面的命令会在用户主目录的 .gitconfig文件中生成如下配置(也可以直接编辑配置文件添加)git config --global credential.helper store
如果没用使用 --global 选项,则会在当前项目的 .git/config 文件中[credential] helper = store
- 临时记住密码
#默认记住密码15分钟 git config –global credential.helper cache #以下命令记住密码1小时 git config credential.helper 'cache –timeout=3600'