up vote 63 down vote favorite
19
share [g+] share [fb]

I've got two branches that are fully merged together.

However, after the merge is done, I realise that one file has been messed up by the merge (someone else did an auto-format, gah), and it would just be easier to change to the new version in the other branch, and then re-insert my one line change after bringing it over into my branch.

So what's the easiest way in git to do this?

link|improve this question

78% accept rate
feedback

4 Answers

up vote 109 down vote accepted

Figured it out. Run this from the branch where you want the file to end up:

git checkout otherbranch myfile.txt
link|improve this answer
this command solved something i've been looking for hours, thx !! – Frederic Morin Nov 23 '08 at 8:05
4  
Yes, it would. But that was the intention of the question. – Ikke Feb 2 '10 at 11:54
16  
What's kinda sad is that I went to upvote this answer and it turns out I already upvoted it 6 months ago. – Mark Beckwith Sep 9 '10 at 13:33
1  
Another upvote, so much love. Thanks! – Rog Jun 3 '11 at 6:02
1  
Probably obvious, but you need to use the complete filename... Wildcards don't work! – Chris Hart Sep 5 '11 at 22:03
show 1 more comment
feedback

But this would not transfer the commit history of the file in otherbranch. What I would love to see is a way to just "merge" a single file from one branch to another keeping its revision history.

link|improve this answer
git log filename, followed by git cherry-pick. stackoverflow.com/questions/449541/… – James Moore Nov 16 '10 at 20:44
Yes we know about the flags on this, can anyone indicate which answer this is a comment about and flag it? My git-fu is non-existent today. – Kev Sep 25 '11 at 10:18
feedback

I ended up at this question on a similar search. In my case I was looking to extract a file from another branch into current working directory that was different from the file's original location. Answer:

git show TREEISH:path/to/file >path/to/local/file
link|improve this answer
feedback

What about :

  git diff "$branch" | diffstat
  git checkout --merge "$branch" "$file"
  git diff "$branch" | diffstat
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.