码迷,mamicode.com
首页 > 其他好文 > 详细

github 如何合并不同分支

时间:2015-11-30 13:03:47      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:

From:

http://stackoverflow.com/questions/1123344/merging-between-forks-in-github

 

1. 添加remote original 分支,名字貌似喜欢叫upstream

git remote add upstream git://github.com/octocat/Spoon-Knife.git

2. fetch

git fetch upstream

3. 然后会看到各种versions

From git://github.com/octocat/Spoon-Knife.git
 * [new branch]      gh-pages   -> upstream/gh-pages
 * [new branch]      master     -> upstream/master

4. Merge 或者 pull

git merge upstream/master

或者pull

git pull upstream/master

 

github 如何合并不同分支

标签:

原文地址:http://www.cnblogs.com/liangnote/p/5006710.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!