我发出后

git push origin <branch-name>

并输入了访问凭证,Git像这样返回了一个错误
remote: Repository not found.
fatal: Authentication failed for 'https://github.com/<account-name>/<repository-name>.git'

似乎是什么问题?

最佳答案

GitHub帮助页面“Error: Repository not found”总结了可能的原因:

  • 许可(这是Monikacomments中用“Cloned directly from repo…get error when pushing”所指的)

    您可能需要 fork the repo ,然后在本地存储库上执行以下操作:
    git remote rename origin upstream
    git remote add origin https://[email protected]/YourUsername/YourFork
    
  • 拼写: repo 的名称是 case sensitive
  • 不存在的 repo
  • 关于github - Git错误 “remote: Repository not found.”是什么意思?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19971049/

    10-13 05:40