2

我正在使用带有 Git 扩展的 Visual Studio 2012。我正在使用位桶来存储项目。

每次 - 每当我想要推送或拉取 Git 时,都会在 Windows 8 中询问我的帐户密码。

谢谢。

4

1 回答 1

4

您可以使用gitcredentials并告诉它记住您的密码一段时间

git config --global credential.helper "cache --timeout=time_in_seconds"

例如,如果你想让它在第二天记住它会是60 * 60 * 24 = 86400几秒钟,所以命令看起来像

git config --global credential.helper "cache --timeout=86400"

希望这可以帮助。

于 2013-09-26T13:54:19.603 回答