It looks like hg out --patch
or hg out -p
is a good way to see what code is pushed out to the repo (when it is pushed)... but the diff is in text format. Is there a way to make it use kdiff3
as well?
views:
42answers:
2
+1
A:
hg outgoing --patch
shows the changes in each changeset separately, which probably isn't what you want if you're looking for a visual representation. You more likely want the GUI equivalent of hg diff -r your_latest_changeset -r remote_servers_latest_changeset
where the latest changesets are the respective tip
revisions if you're not using named branches. You can get that in your favorite GUI using the extdiff extension yielding a final command like:
hg extdiff -p kdiff3 -r your_latest_changeset -r remote_servers_latest_changeset
Ry4an
2010-07-09 02:38:51
hm... what if Peter and Mary both modified 200 lines, won't those show in the above command line? What if just diff'ing between your current code with "the pulled version"? was asked in http://stackoverflow.com/questions/3202622/using-mercurial-how-to-diff-with-a-fixed-revision-if-commit-intermediate-states
動靜能量
2010-07-10 03:40:18
A:
Daniel Worthington
2010-10-31 07:38:37