I was trying to download a very big package using svn. It got interrupted after about an hour due to internet connection failure. Now when I have restored the connection is it possible to resume the download from the point where it earlier left? I used the following command to begin the download

cd ~/<your_working_dir> svn co https://code.ros.org/svn/opencv/branches/2.3

right now the terminal window is still as shown

enter image description here

link|improve this question
feedback

1 Answer

up vote 6 down vote accepted

As soon as you have started the check out, subversion creates working copy meta data in the folder.

Thus, you can run svn up <wc-dir>. After a terminated operation however, you might need to run svn cleanup <wc-dir> first.

link|improve this answer
looks like resumed – bubble Feb 15 at 19:48
I tried giving svn cleanup. The following appears on the screen svn: In directory 'opencv_extra/testdata/cv/detectors_descriptors_evaluation' svn: Error processing command 'modify-wcprop' in 'opencv_extra/testdata/cv/detectors_descriptors_evaluation' svn: 'opencv_extra/testdata/cv/detectors_descriptors_evaluation/evaluation_test_descr‌​iption.txt' is not under version control – bubble Feb 15 at 20:07
Which svn version do you have? You could probably delete that particular file manually and retry, but then we'll never know what went wrong. – solsson Feb 16 at 10:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.