繁体   English   中英

Repo在使用git时没有发现致命错误并且无法推送到github

[英]Repo not found fatal error while using git and unable to push to github

我已经检查了很多 stackoverflow 试图弄清楚为什么我会收到这个错误,因为我在 github 上确实有一个我想要推送的内容的仓库。 我什至重新生成了我的 ssh 密钥并将其添加到 github。 我还看到:

Please make sure you have the correct access rights

并且存储库存在。

当我尝试远程添加 repo 时,我看到:

$ git remote add origin git@github.com:<username>/<reponame>.git
> fatal: remote origin already exists.

$ git push

fatal: The current branch master has no upstream branch.
To push the current branch and set the remote as upstream, use

git push --set-upstream origin master

然后我得到错误

当我尝试

ssh -T git@github.com

我看到正确的用户名

不知道还有什么可以尝试的。

如果您已经输入

$ git remote add origin git@github.com:<username>/<reponame>.git

你不能再次输入它,因为 origin 现在已经存在。 它会回应

致命:远程源已经存在。

但是链接到原点的地址可能是错误的。 尝试打字

$ git remote remove origin

并输入

$ git remote add origin git@github.com:<username>/<reponame>.git

再次。

然后输入

$ git push origin master

如果地址和 SSH 密钥都正确,它可能会起作用。

尝试这个

git push origin master

阅读此文档以了解更多使用 git push 的选项

https://git-scm.com/docs/git-push

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM