我有一个Git存储库,结构如图片所示:
正如您所看到的那样,development
分支是我在开发服务器上使用的分支。
我们正在(我和他们)使用新的功能,因此开发人员在unificacion
分支机构工作,我继续在development
开发,以便不会弄乱" stable&#34 ;我已经创建了merge-all
,其中包含development
和unificacion
之间的合并。好吧,我需要在开发服务器中从development
切换到merge-all
,我是怎么做到的?
我在.git/config
档案中有这个内容,但我不太确定会触及那里的任何内容。
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = git@bitbucket.org:iosev/sis-php-source.git
[branch "master"]
remote = origin
merge = refs/heads/master
答案 0 :(得分:1)
Switching between branches use
git checkout merge-all
Read below all you need to know about branching and merging
http://git-scm.com/book/es/v2/Git-Branching-Basic-Branching-and-Merging