Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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...

share|improve this question

5 Answers

up vote 551 down vote accepted

Try

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

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

share|improve this answer
Beautiful, exactly what I was looking for. Thanks! – johannix May 5 '09 at 1:14
35  
+1, sometimes --name-only is handy too – Pat Notz May 5 '09 at 4:16
lovely. lovely. lovely. – Amit Oct 26 '12 at 3:52
What's do each of the indices on the left hand side mean (I see a lot of M's and D's)? – user446936 Apr 5 at 18:25
1  
@user446936 - you can see what the letters mean in the git status man page @ kernel.org/pub/software/scm/git/docs/git-status.html - in particular, M == modified, D == deleted – James Manning Apr 11 at 18:34

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
share|improve this answer
33  
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 '12 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 '12 at 21:42
8  
I'm with you on color! BTW I meant to say git config --global color.ui true - to be complete. – Art Swri Mar 10 '12 at 22:13

Also keep in mind that git has cheap and easy branching. If I think a merge could be problematic I create a branch for the merge. So if master has the changes I want to merge in and ba is my branch that needs the code from master I might do the following:

git checkout ba
git checkout -b ba-merge
git merge master
.... review new code and fix conflicts....
git commit
git checkout ba
git merge ba-merge
git branch -d ba-merge
git merge master

End result is that I got to try out the merge on a throw-away branch before screwing with my branch. If I get my self tangled up I can just delete the ba-merge branch and start over.

share|improve this answer

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.

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

If anyone is trying to generate a diff file from two branches :

git diff master..otherbranch > myDiffFile.diff
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.