错误并且无法将本地离子项目推送到私有github存储库

时间:2016-05-09 01:12:33

标签: git github repository push

我有一个本地离子项目,创建了一个私有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中没有任何内容出现,我真的不知道如何继续。我按照我读到的内容,但我正确地做到了吗?

1 个答案:

答案 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