I want to merge two branches that have been separated for a while and wanted to know which files have been modified.

Came across this link: http://linux.yyz.us/git-howto.html which was quite useful.

The tools to compare branches I've come across are:

  • git diff master..branch
  • git log master..branch
  • git shortlog master..branch

Was wondering if there's something like "git status master..branch" to only see those files that are different between the two branches.

Without creating a new tool, I think this is the closest you can get to do that now (which of course will show repeats if a file was modified more than once):

  • git diff master..branch | grep "^diff"

Was wondering if there's something I missed...

link|improve this question

65% accept rate
feedback

3 Answers

up vote 224 down vote accepted

Try

$ git diff --name-status master..branch

That should do what you need, if I understand you correctly.

link|improve this answer
Beautiful, exactly what I was looking for. Thanks! – johannix May 5 '09 at 1:14
9  
+1, sometimes --name-only is handy too – Pat Notz May 5 '09 at 4:16
feedback

Try

$ git diff --stat --color master..branchName

This will give you more info about each change, while still using the same number of lines.

You can also flip the branches to get an even clearer picture of the difference if you were to merge the other way:

$ git diff --stat --color branchName..master
link|improve this answer
3  
If you have (highly recommended, imho) git color turned on (config --global color.ui true), you can skip the --color. (I have lks - lazy keyboard syndrome.) – Art Swri Mar 10 at 21:35
I agree completely with your recommendation (+1), as it makes things far easier to read. I don't know what it's not the default. – Gerry Mar 10 at 21:42
1  
I'm with you on color! BTW I meant to say git config --global color.ui true - to be complete. – Art Swri Mar 10 at 22:13
feedback

Note that git makes it easy to just try out the merge and back away from any problems if you don't like the result. It might be easier than looking for potential problems in advance.

link|improve this answer
3  
David, that's a good point, although it'd be nice to just know what's going on before hand... – johannix May 5 '09 at 1:14
feedback

Your Answer

 
or
required, but never shown

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