我有一个本地离子项目,创建了一个私有github存储库。
他们说这样做:
git remote add origin https://github.com/shh/TestThis.git
git push -u origin master
这不起作用这是我在命令行上得到的:
SHHs-iMac:testThis shh$ git remote add origin git@github.com:shh/TestThis.git
fatal: remote origin already exists.
SHHs-iMac:testThis shh$ git push -u origin master
error: src refspec master does not match any.
error: failed to push some refs to 'https://github.com/shh/TestThis.git'
github中没有任何内容出现,我真的不知道如何继续。我按照我读到的内容,但我正确地做到了吗?
答案 0 :(得分:1)
很难准确猜出发生了什么,错误消息
SHHs-iMac:testThis shh $ git remote add origin git@github.com:shh/TestThis.git 致命的:远程起源已经存在。
告诉您已经有一个名为origin
的本地远程,并且您正在尝试添加一个名称相同的新远程。要解决此问题,请键入以下内容:
git remote show origin
这将显示您的旧origin
指向的网址。如果它已经指向你想要的地方GitHub,那么继续使用它。如果没有,那么您可以尝试通过以下方式创建新的遥控器:
git remote add origin2 https://github.com/shh/TestThis.git
git push -u origin2 master