当前位置:  开发笔记 > 开发工具 > 正文

第一次提交到git存储库时出现问题

如何解决《第一次提交到git存储库时出现问题》经验,为你挑选了1个好方法。

我是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'

我怎样才能清理它并获得正确的遥控器?



1> Mat..:

您只需要删除origin具有错误引用的远程:

$ git remote rm origin

然后重新启动添加,然后推送,你应该很高兴.

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

推荐阅读
个性2402852463
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有