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

This answer is great for seeing a visual diff between two files that are checked into git: How do I view 'git diff' output with a visual diff program?

However, I'd like to see a visual diff between two branches. So far, my best bet seems to be:

git diff --name-status master dev

which isn't very informative and not very visual.

Is there anything better out there?

UPDATE

git-diffall with a GUI diff tool like meld is also useful. See point 5 here:

http://rubyglazed.com/post/15772234418/git-ify-your-command-line

share|improve this question

1 Answer

up vote 23 down vote accepted

Use git diff with a range.

git diff branch1..branch2

This will compare the tips of each branch.

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.