vote up 7 vote down star
3

I have a largish Mercurial repository that I've decided would be better as several smaller repositories. Is there a way that I can split the repository and have each piece retain its revision history?

flag

2 Answers

vote up 6 vote down check

The best way to do this is using the 'convert' extension. You'll use mercurial and both source and destination type and then use a --filemap with entries like:

exclude path/you/do/not/want
rename path/you/do/want .

The rename is only necessary if you want to take the parts you're keeping and move them "higher" in the directory hierarchy.

link|flag
This wont work: rename path/you/do/want / This will: rename path/you/do/want . This only applies if you are moving a path to the root. – Nathan Lee Apr 8 at 2:25
Indeed, thanks, Nathan. – Ry4an Apr 11 at 18:20
vote up 2 vote down

Just clone it and delete the unwanted stuff out of each copy.

link|flag
That doesn't help. Every close still has full history, so the "too much stuff" will always be there in the ".hg" directory taking up space. – Ry4an Nov 3 '08 at 4:16
ah, you want the Stalinist revisionism form of version control. ;) en.wikipedia.org/wiki/…) – Jason S Jan 15 '09 at 21:46

Your Answer

Get an OpenID
or
never shown

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