gpt4 book ai didi

git - 首次提交到 git 存储库时遇到问题

转载 作者:太空狗 更新时间:2023-10-29 13:16:47 24 4
gpt4 key购买 nike

我是 Git 的新手,已经设置并创建了我的第一个存储库。我正在尝试添加 README 作为第一次提交,并且我一直在按照 http://help.github.com/create-a-repo/ 上的步骤操作没错,但我卡在了这一步:

git push -u origin master

我收到这个错误:

ERROR: username/Hello-World.git doesn't exist. Did you enter it correctly?

我认为这是因为我的 git remote add 命令错误:我忘记替换我的用户名和存储库名称。用正确的参数重试它给我:

$ git remote add origin git@github.com:christineh/Hello-World.git
fatal: remote origin already exists.
$ git push -u origin master
Enter passphrase for key '/Users/christinehorvat/.ssh/id_rsa':
ERROR: username/Hello-World.git doesn't exist. Did you enter it correctly?
fatal: The remote end hung up unexpectedly'

我怎样才能清理它并获得正确的 Remote ?

最佳答案

您只需删除具有不正确引用的 origin Remote :

$ git remote rm origin

然后重启添加和推送,就可以了。

$ git remote add origin git@github.com:christineh/Hello-World.git
$ git push -u origin master

关于git - 首次提交到 git 存储库时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8377034/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com