24

Is there any hg functionality to mimic the "guess renames" command of TortoiseHG?

I really dig this one, however I am currently using MacOS and have Murky or the commandline interface available.

Johannes Rudolph
  • 35,298
  • 14
  • 114
  • 172

1 Answers1

31

You can do

hg addremove --similarity <percent>

Type hg help addremove for details.

Dan
  • 3,665
  • 1
  • 31
  • 39
  • 3
    omfgz that's the best thing I saw in version control systems ever!! – holms Jul 12 '10 at 12:02
  • this is not identical to `thg guess` because it adds all untracked files, whereas TortoiseHg only moves files that were already in the repository. – Mark Dec 15 '15 at 19:57