2

I am using Visual Studio 2012 with Git extension. I am using bit-bucket for storing project.

Each and every time - whenever I want to either push or pull Git ask me for account password in windows 8.

Thanks.

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 に答える