如何将一个分支中的特定文件合并到Git中的另一个分支中

时间:2012-12-04 20:38:36

标签: git

我在git repo中有2个分支,让我们调用它们,dev和test。我在单个文件somecode.js中进行了更改。两个分支都对somecode.js进行了更改。两个分支显着(但可管理)分歧,因此直接的“合并”是不够的。

我尝试了http://jasonrudolph.com/blog/2009/02/25/git-tip-how-to-merge-specific-files-from-another-branch/,但它没有合并两个文件的内容。你基本上只是翻阅文件,而不是实际合并文件的内容。

我也尝试过:

git checkout -b newbranch
git checkout test somecode.js
git commit -m "somecode changes from newbranch"
git checkout dev
git merge newbranch

git checkout -m test somecode.js

(我非常希望-m能够合并,但它似乎对我不起作用......)

我认为我接近我需要的东西,但后来我意识到它只是快速转发提交意味着它没有合并,它在测试中写了原始文件。

因此,重申一下,如何将一个分支中的特定文件合并到另一个分支中,而不仅仅是在我正在使用git合并的分支中写入文件。

3 个答案:

答案 0 :(得分:40)

我想你想用

git checkout -p

在你的情况下

git checkout dev
git checkout -p test somecode.js

您可以以交互方式应用差异。

答案 1 :(得分:5)

git checkout dev
git show test:somecode.js > somecode.js.theirs
git show $(git merge-base dev test):somecode.js > somecode.js.base
git merge-file somecode.js somecode.js.base somecode.js.theirs 

这样你就可以手动从测试分支上的somecode.js到dev分支上的somecode.js进行三向合并。

或..您可以使用所需的更改创建临时分支,并从中进行压缩合并。它是'git way'吗? :)

git checkout -b test/filtered $(git merge-base dev test)
git diff ..test -- somecode.js | git apply
git add -- somecode.js
git commit -m "Updated somecode.js"
git checkout dev
git merge --squash test/filtered
git branch -D test/filtered

答案 2 :(得分:1)

我认为git merge-file正是您所需要的。从手册页:

git merge-file incorporates all changes that lead from the <base-file> to
<other-file> into <current-file>. The result ordinarily goes into <current-file>.
git merge-file is useful for combining separate changes to an original. Suppose
<base-file> is the original, and both <current-file> and <other-file> are
modifications of <base-file>, then git merge-file combines both changes.