vote up 2 vote down star

I am using Mercurial under Windows XP (using the TortoiseHg distribution) and I want to use NTFS hardlinks when cloning a repository. Out of the box Mercurial does not do this. I have read that a win32file python extension needs to be enabled. So far I have been unsuccessful in making this work (adding a win32file entry to the extensions section in mercurial.ini does not seem to work). Is there a simple way to enable it?

flag

55% accept rate
I don't know the answer, but I am curious as to what you are trying to achieve. Can you elaborate? – scrible Aug 7 at 4:05
I am trying to improve the performance of cloning a repository. Since hardlinks only increase the reference count of a file, cloning a repository becomes a fairly cheap operation in terms of disk space & creation time. – Mike Thompson Aug 7 at 12:00
1  
@Mike Thompson: You lost me there. If you use hard links for cloning repositories then a change to one of the files in one repo will affect all other repos too!? What's the catch? – utku_karatas Aug 7 at 17:24
@utku_karatas: It's handled automatically by mercurial. It does hardlinks and when it needs to change a file, if the link count for that inode is greater than 1, it then does a copy. That way you get the space savings right up until you make a change. – Ry4an Sep 9 at 3:35

1 Answer

vote up 0 vote down check

I think you'll need to install full Python and use the Mercurial source install. While TortiseHG's py2exe-compiled installation of Mercurial can load mercurial extensions just fine, it's my understanding that it won't let you swap out core python modules.

link|flag

Your Answer

Get an OpenID
or

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