本文最后更新于:2024年5月30日 下午

如果通过 HTTP/HTTPS 连接 Git 远程仓库,每次都需要输入用户名密码,十分麻烦,本文记录让 Git 记住用户名密码的方法。

永久配置

1
git config --global credential.helper store

该命令会在 ~/.gitconfig 文件中生成下面的配置。

1
2
[credential]
helper = store

登录过后的账号密码,会记录在~/.git-credentials文件中

1
2
3
4
5
格式:
协议://username:password@git域名

如:
http://tanpeng%40163.com:123456@git.thextrader.cn

如需只设置当前项目,则在当前项目下的.git/config文件中添加。

临时配置

默认记住15分钟:

1
git config –global credential.helper cache

自定义配置记住1小时:

1
git config credential.helper ‘cache –timeout=3600’

参考资料



文章链接:
https://www.zywvvd.com/notes/tools/git/git-save-http-pswd/git-save-http-pswd/


“觉得不错的话,给点打赏吧 ୧(๑•̀⌄•́๑)૭”

微信二维码

微信支付

支付宝二维码

支付宝支付

Git 记住 Http/Https 用户名/密码
https://www.zywvvd.com/notes/tools/git/git-save-http-pswd/git-save-http-pswd/
作者
Yiwei Zhang
发布于
2024年5月30日
许可协议