git每次提交都输入密码

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

.gitconfig 文件中添加

[credential]    
    helper = store

或者在git bash 中执行

git config --global credential.helper store

关键字:git, helper, store