As my team works on a given project with the source in a Mercurial repository, the repository is obviously growing in size. As such, cloning a repository over the network becomes slower and slower.
Are there any techniques that are used for pruning out older commits or reducing the size of the repo to make the cloning operation faster over a slow network?
(We are using TortoiseHg as the Mercurial client but that (I'm guessing) shouldn't make a difference to the solution to this problem.)
mvn release:preparedoes that for every release. Cloudbees Jenkins does that for every build... – Peter Kofler May 17 '11 at 9:48http://selenic.com/hg/archive/stable.zip. It's just a zip file with the files from that branch — you can of course not make new commits based on such a file. But for continuous integration it can work fine. – Martin Geisler Dec 27 '11 at 12:43