git常见问题
如果每次提交或拉取都需要输入密码
1
git config --global credential.helper store
再次输入密码后就可以记住密码了。
操作时提示错误:remot:HTTP Basic:Access denied
1
git config --system --unset credential.helper
再次输入正确的用户名和密码即可。
或者清空http验证再试:1
git config -global http.emptyAuth true
git常见问题
http://anximin.github.io/2024/02/23/git_chengepassword/