从原始版本更新我的Github仓库

时间:2013-03-26 13:45:10

标签: git github clone git-push

forked moodle来自https://github.com/moodle/moodle的正式cloned个回复,然后pull upstream来自我本地的机器。

分叉回购包括大约12-15个分支。

我想用原始版本更新我的Github回购。这样做的过程是: 首先,我使用git push origin master更新我的本地仓库,然后将其推送到我的Gihub仓库。

但推送的命令是master,其中{{1}}是分支。 所以,我必须为所有分支单独做这个吗?

2 个答案:

答案 0 :(得分:0)

git push origin

所有分支机构的更新,对吗?除非合并中存在冲突。

如果你想推动所有分支使用--all

git push --all

请参阅:http://thoughtpad.cs3.in/2011/06/13/clone-push-all-remote-branches-with-git/

答案 1 :(得分:0)

将所有分支推送到回购

git push origin --all