Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

4 Answers

up vote 311 down vote accepted

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

git checkout otherbranch myfile.txt
share|improve this answer
1  
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
54  
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
2  
Another upvote, so much love. Thanks! – Rog Jun 3 '11 at 6:02
3  
Probably obvious, but you need to use the complete filename... Wildcards don't work! – Chris Hart Sep 5 '11 at 22:03
show 4 more comments

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
share|improve this answer

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.

share|improve this answer
1  
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

What about :

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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