git常见问题

  1. 如果每次提交或拉取都需要输入密码

    1
    git config --global credential.helper store

    再次输入密码后就可以记住密码了。

  2. 操作时提示错误: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/
作者
Sylar
发布于
2024年2月23日
许可协议