vote up 6 vote down star
1

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

flag

75% accept rate

2 Answers

vote up 8 vote down check

Try

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

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

link|flag
Beautiful, exactly what I was looking for. Thanks! – johannix May 5 at 1:14
1  
+1, sometimes --name-only is handy too – Pat Notz May 5 at 4:16
I'm glad to help! – jhs May 5 at 5:55
That's pretty kool! I needed it too! Thanks – hasen j May 5 at 11:42
vote up 2 vote down

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|flag
David, that's a good point, although it'd be nice to just know what's going on before hand... – johannix May 5 at 1:14

Your Answer

Get an OpenID
or

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