git config --global credential.helper cache… which tells git to keep your password cached in memory for (by default) 15 minutes. You can?set a longer timeout?with:
记住密码一个小时:
git config --global credential.helper "cache --timeout=3600"
Windows客户端保存密码:
git config --global credential.helper winstore或者手动修改 .gitconfig文件:
[credential]
helper = winstoregit config --global credential.helper store

发表回复