Reputation: 20022
i have a repo which has like 1000 revisions and the source up to this point is 1.5GB.
The thing is I started make the clone on a system, the clone up to 100 revisions. Now when i will pull, it will pull the rest 900 revisions all together.
Please don't ask why the need but is there a way i can pull the next 100 or any number of revisions, then again in another go some more and keep repeating this until I am up to date with the most recent change-set.
b.t.w I am using TortoiseHG 2.7.1
Upvotes: 0
Views: 239
Reputation: 5057
In TortoiseHg GUI you can click "Check for incoming changes" button in the toolbar and select revisions you want to pull.
Upvotes: 1
Reputation: 97355
hg pull -r N
, where N - increased number or "last pulled revision" instead of defaut tip
hg pull -r 200
hg pull -r 300
...
hg pull -r 900
hg pull
Upvotes: 2