How to pause/resume repository cloning in mercurial? -
i've needed clone development tree of large projects (e.g. https://hg.mozilla.org/mozilla-central), problem i'm on slow unstable connection , may not clone repository in single pass.
is possible pause/resume cloning process somehow?
to clone large repository in multiple passes, can use --rev
option on clone command. example:
hg clone --rev 100 <remote url> <local path> cd <local path> hg pull --rev 200 hg pull --rev 300 etc
Comments
Post a Comment