vote up 11 vote down star
7

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?

flag

78% accept rate

1 Answer

vote up 24 vote down check

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

git checkout otherbranch myfile.txt
link|flag
this command solved something i've been looking for hours, thx !! – Blade Nov 23 '08 at 8:05
But wouldn't this overwrite all your changes in the master? – Mobbit Feb 2 at 11:46
Yes, it would. But that was the intention of the question. – Ikke Feb 2 at 11:54

Your Answer

Get an OpenID
or
never shown

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