我正在使用 Cygwin 和 Git。每次我使用 https url 推/拉到 Bitbucket 上的存储库时,都会要求我输入密码。有没有办法存储这些凭据(比如使用 ssh-keys)?
我试图为 Git 安装 Windows Credential Store,但我无法让它与 cygwin 的 Git 一起使用。
谢谢!
更新:
我在这里找到了答案:在 GitHub 上使用 https:// 时,有没有办法跳过密码输入?
总结:
记住密码 15 分钟(默认):
git config --global credential.helper cache
记住密码 10 小时:
git config --global credential.helper 'cache --timeout=36000'
存储密码(没试过):
git config --global credential.helper store
重置:
git config --unset --global credential.helper
西姆