这是做git远程的正确方法

时间:2014-07-23 04:32:50

标签: git github repository

我需要了解这段代码是什么:

git remote add github -m master https://github.com/thesteve0/geoserver-on-openshift.git

git pull -s recursive -X theirs github master

git push origin

我运行代码但是我有这个错误:

  

致命:'起源'似乎不是一个git存储库   致命的:无法从远程存储库读取。

     

请确保您拥有正确的访问权限   存储库存在。

我正在运行git 1.9.1

感谢所有人。

1 个答案:

答案 0 :(得分:0)

尝试键入git remote以查看设置了哪些遥控器.... github显示以下作为添加回购的方式。我的猜测是,为了推动远程原点,你实际上需要将其命名为原点?

https://help.github.com/articles/adding-a-remote

git remote add origin https://github.com/user/repo.git
# Set a new remote

git remote -v
# Verify new remote
# origin  https://github.com/user/repo.git (fetch)
# origin  https://github.com/user/repo.git (push)