我发出后
git push origin <branch-name>
并输入访问凭据,Git 返回了这样的错误
remote: Repository not found.
fatal: Authentication failed for 'https://github.com/<account-name>/<repository-name>.git'
似乎是什么问题?
我发出后
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 ”总结了可能的原因:
许可(这是Monika在评论中所指的“直接从 repo 克隆…推送时出错”)
您可能需要分叉 repo,并在本地 repo 上执行以下操作:
git remote rename origin upstream
git remote add origin https://YourUsername@github.com/YourUsername/YourFork
拼写:repo 的名称区分大小写
不存在的回购