将远程分支合并到我的本地分支

时间:2013-12-04 05:46:02

标签: git git-merge

我被告知将遥控器/ origin / robbranch合并到我当地的分支carlbranch 。我该如何实现这一目标?要合并的分支是远程的。我的机器上还没有它。

2 个答案:

答案 0 :(得分:0)

要合并远程分支,您可以按照以下步骤操作:

1.首先引入变化(如果有的话)

$ git fetch origin 

2.然后创建一个新的本地分支,设置为跟踪远程存储库中的分支robbranch

$ git checkout -b robbranch origin/robbranch 

3.现在你去当地的carlbranch分店

$ git checkout carlbranch

4.Merge with robbranch

$ git merge robbranch

你应该没问题(除非在合并完成之前你必须解决一些合并冲突)。

答案 1 :(得分:0)

让我们一步一步来做。

1.将remote(remote_git:使用您想要的任何名称)添加到本地git目录。 Adding Remote Github help

git remote add remote_git url

2.检查要合并的分支

git checkout carlbranch

3.Pull robbranch并将其合并到carlbranch

git pull -u remote_git robbranch

在你的情况下,我认为remote_git是你的起源所以你可以跳过Point#1,然后用git_remote = origin跟随2和3