for it's takes a lot of time to download a branch,may i download it in two times

Asked by happymakai

i want to download mysql-5.0,but it's too big and my download speed is low,it takes too much time to get this branch ,may i pause this download and later continue downloading?

Question information

Language:
English Edit question
Status:
Solved
For:
Bazaar Edit question
Assignee:
No assignee Edit question
Solved by:
Martin Pool
Solved:
Last query:
Last reply:
Revision history for this message
Best Martin Pool (mbp) said :
#1

On 9 April 2010 13:59, happymakai <email address hidden> wrote:
> New question #106865 on Bazaar:
> https://answers.launchpad.net/bzr/+question/106865
>
> i want to download mysql-5.0,but it's too big and my download speed is low,it takes too much time to get this branch ,may i pause this download and later continue  downloading?

Hi,

probably the best way is to pull a few revisions at a time, eg

bzr init-repo mysql
cd mysql
bzr branch lp:mysql/5.0 -r100

and then so on up.

--
Martin <http://launchpad.net/~mbp/>

Revision history for this message
happymakai (798656396-qq) said :
#2

Thanks Martin Pool, that solved my question.

Revision history for this message
Marius Kruger (amanica) said :
#3

On 13 April 2010 09:33, Martin Pool
<email address hidden> wrote:
> probably the best way is to pull a few revisions at a time, eg
>
> bzr init-repo mysql
> cd mysql
> bzr branch lp:mysql/5.0 -r100
>
> and then so on up.

I've had to do this before when pulling a big shaky svn branch.
Maybe it would be nice to automate this by having a pull --step=100
option to pull a chunk of revs at a time and then "commit" the
transaction completely after each batch before moving on; or even do
this by default?!

Revision history for this message
Alexander Belchenko (bialix) said :
#4

Marius Kruger пишет:
> Question #106865 on Bazaar changed:
> https://answers.launchpad.net/bzr/+question/106865
>
> Marius Kruger posted a new comment:
> On 13 April 2010 09:33, Martin Pool
> <email address hidden> wrote:
>> probably the best way is to pull a few revisions at a time, eg
>>
>> bzr init-repo mysql
>> cd mysql
>> bzr branch lp:mysql/5.0 -r100
>>
>> and then so on up.
>
> I've had to do this before when pulling a big shaky svn branch.
> Maybe it would be nice to automate this by having a pull --step=100
> option to pull a chunk of revs at a time and then "commit" the
> transaction completely after each batch before moving on; or even do
> this by default?!
>

+1 for having it as option.