我正在使用带有Git扩展的Visual Studio 2012。 我正在使用bit-bucket来存储项目。
每次 - 每当我想要推或拉Git时,都要求我提供帐户密码 在Windows 8中。
感谢。
答案 0 :(得分:4)
您可以使用gitcredentials并告诉它记住您的密码一段时间
git config --global credential.helper "cache --timeout=time_in_seconds"
例如,如果您希望它在第二天记住,它将是60 * 60 * 24 = 86400
秒,所以命令看起来像
git config --global credential.helper "cache --timeout=86400"
希望这有帮助。