git之https或http方式设置记住用户名和密码的方法
发布时间:2022-01-22 13:57:24
git之https或http方式设置记住用户名和密码的方法
https方式每次都要输入密码,按照如下设置即可输入一次就不用再手输入密码
设置记住密码(默认15分钟):
git config --global credential.helper cache
自己设置失效时间(单位:秒):
这样就设置一个小时之后失效
git config credential.helper 'cache --timeout=3600'
长期存储密码(无过期时间):
git config --global credential.helper store