如何处理git每次提交都输入密码

.gitconfig 文件中添加 

1
2
[credential]    
    helper = store


或者在git bash 中执行

1
git config --global credential.helper store

你可能感兴趣的:(git)