by ampatspell
in Code
Guess-renames is nifty Mercurial extension (and standalone tool) written by Colin Barrett.
I’m not really that much familiar with Python that’s why I had a bit of trouble getting it to work so for those like me here is step by step instructions:
hg clone ssh://hg@bitbucket.org/cbarrett/guess-renames/
make tests
If this fails miserably with exceptions mentioning setuptools, install them.
wget http://peak.telecommunity.com/dist/ez_setup.py sudo python ./ez_setup.py
Tests should now pass. If so install:
make tests sudo python ./setup.py install
add the following to ~/.hgrc:
[extensions] guessrenames.hgext=
Note: If you already have [extensions] section, just add guessrenames to that one.
hg addremove -g
For more information see guess-renames project page