Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I diff one branch with my default branch

Tags:

mercurial

I switched to a branch on my local repo and noticed it gave me message showing x files updated. This surprised me as I didn't know there were any differences on that branch. How do I compare that branch with the default branch to see what has changed?

like image 787
jaffa Avatar asked Apr 24 '12 14:04

jaffa


People also ask

How to compare 2 branches in github?

On the Github, go to the Source view of your project. You will see a link named 'Branch List'. Once the page opens you can see a list of all the remote branches. Hit on the Compare button in front of any of the available branches to see the difference between two branches.


2 Answers

Use hg diff -r BRANCH1:BRANCH2, where BRANCH1 and BRANCH2 are the names of the branches. This will show you the differences between the heads of the two branches.

You got the message about "x files updated" because there were files changed on the original branch, not necessarily because there were files changed on the other branch. Mercurial shows you the union of the sets of changed files from both branches.

like image 174
Niall C. Avatar answered Oct 23 '22 02:10

Niall C.


To just list the files with differences, add the --stat option:

hg diff --stat -r BRANCH1:BRANCH2 

This gives output like this:

mypath/file1.cpp    |    1 - mypath/file2.cpp    |  143 ++++++++++ mypath/file3.cpp    |   18 +- 3 files changed, 160 insertions(+), 2 deletions(-) 

Or to clean up the output a bit, pipe it through sed to remove everything after the pipe symbols:

hg diff --stat -r BRANCH1:BRANCH2 | sed "s/|.*$//g" 

This gives you just a list of the changed files and the summary line at the end:

mypath/file1.cpp mypath/file2.cpp mypath/file3.cpp 3 files changed, 160 insertions(+), 2 deletions(-) 
like image 42
Anthony. Avatar answered Oct 23 '22 03:10

Anthony.