- 记住密码(默认15分钟)
git config --global credential.helper cache
- 记住密码(自定义时间)
git config credential.helper 'cache --timeout=3600' #一个小时后失效
- 长期存储密码
git config --global credential.helper store
git config --global credential.helper cache
git config credential.helper 'cache --timeout=3600' #一个小时后失效
git config --global credential.helper store