How do I diff one branch with my default branch

31,122

Solution 1

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.

Solution 2

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(-)

Solution 3

To view a diff of branch otherbranch with the current branch:

hg diff -r otherbranch
Share:
31,122
jaffa
Author by

jaffa

Updated on July 05, 2022

Comments

  • jaffa
    jaffa almost 2 years

    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?

  • declension
    declension about 10 years
    ...and if you're already (cleanly) switched to that branch: hg diff -r default will do the same
  • BMW
    BMW almost 7 years
    How to diff with file name only output?