I look a lot at diff merges from mercurial, and it annoys me that moved files are shown as file deletion + file addition, often at two different places in the diff. It would be great if there was a way to replace that output by the message "file moved from .. to ..". The same goes for copied files.

I have heard that git has a copy detection algorithm that can also handle some changes in the files.

Is there a mercurial extension or a standalone tool I can feed my diff to that detects these file copies as well?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

The copy detection mechanism in Mercurial has a "similarity" parameter for addremove operation:

[alias]
addremove = addremove --similarity 100
adrs = addremove --similarity 0.01

The git(!) extended format might help you to get the desired output (as illustrated here):

Use the -g/--git option to generate diffs in the git extended diff format.

$ mv c b

sjl at ecgtheow in ~/Desktop/test on default! 
$ hg addremove --similarity 100
adding b
removing c
recording removal of c as rename to b (100% similar)

sjl at ecgtheow in ~/Desktop/test on default! 
$ hg diff
diff --git a/c b/b
rename from c
rename to b
link|improve this answer
does the alias have an effect when using hg commit -A? I like to use qct as graphical frontend, so I have to check whether that works as well.. – daniel kullmann Aug 22 '11 at 13:39
@daniel: it should. For instance, it does influence TortoiseHg (stackoverflow.com/questions/1295735/…) – VonC Aug 22 '11 at 13:51
feedback

Your Answer

 
or
required, but never shown

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