Git 记住密码

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

你可能感兴趣的:(Git 记住密码)