Git 使用记录

git 命令错误处理

git remote: HTTP Basic: Access denied 错误
解决方案:

  1. 如果账号密码有变动 用这个命令
    git config --system --unset credential.helper
    重新输入账号密码 应该就能解决了
  2. 如果用了第一个命令 还不能解决问题那么 用这个命令:
    git config --global http.emptyAuth true

你可能感兴趣的:(Git 使用记录)