helper

经验技巧:Windows缓存Git用户名密码

Windows系统在cmd里面执行下面命令 git config --global credential.helper wincred 参考 https://help.github.com/articles/caching-your-github-password-in-git/ 关键字:git, windows, helper

git每次提交都输入密码

.gitconfig 文件中添加 [credential] helper = store 或者在git bash 中执行 git config --global credential.helper store 关键字:git, helper, store