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 

see this related question.


Comments

Popular posts from this blog

java - Jmockit String final length method mocking Issue -

What is the difference between data design and data model(ERD) -

ios - Can NSManagedObject conform to NSCoding -