必须将自己的库clone下来,然后,将别人的更新pull来,再提交到github上么?
4 回复
不需要clone下来,拿node来举例吧:
$ git pull [email protected]:joyent/node.git master
$ git push [email protected]:yorkie/node.git master
如果发生错误可能是你在master上做了一些更改,这时候你可以把你的更改(如果重要的话)先创建一个新branch(比如yorkie_dev),然后在git push
的时候加上--force
参数:
$ git push git[@github](/user/github).com:yorkie/node.git master --force