-1

I am using eclipse plugin 'subversive SVN' as my SVN tool.

My remote repository is huge (of more than 30GB) , and when I tried to download I lost the connection in between (say 94% ) .

I need to checkout only the remaining , missing files.

If I click checkout option, it will delete all the existing files and will start from the scratch again which I don't want .

Is there any better solution , to download only the missing files from SVN repo ?

enter image description here

UPDATE :

I opened command window (cmd ) in that location . And typed these commands.

svn cleanup

svn update

Fixed my issue .

Zoe
  • 27,060
  • 21
  • 118
  • 148
Sujith PS
  • 4,776
  • 3
  • 34
  • 61
  • 1
    Possible duplicate of [svn resuming aborted checkout](http://stackoverflow.com/questions/4031845/svn-resuming-aborted-checkout) – Seb Jan 11 '16 at 13:34

1 Answers1

2

As pointed out in this question, you can consult the SVN documentation.

If you interrupt a checkout (or something else interrupts your checkout, such as loss of connectivity, etc.), you can restart it either by issuing the identical checkout command again or by updating the incomplete working copy:

Community
  • 1
  • 1
Seb
  • 959
  • 16
  • 29
  • Can you guide me how ? – Sujith PS Jan 11 '16 at 13:38
  • 2
    @Seb please provide links to an up-to-date documentation. SVNBook 1.5 is very outdated. Therefore, I updated the link to point to SVNBook 1.8. – bahrep Jan 11 '16 at 13:47
  • @SujithPS are you sure that the eclipse implementation will delete everything you've already checked out and redownload everything, rather than following the normal SVN behaviour? – Seb Jan 11 '16 at 13:55
  • @Seb : Yes. That happened 3 times. I lost 40 GB of data already (to download 30 GB data in total ) .I checked the folder after clicking on 'checkout' , it deleted all the data in the folder. – Sujith PS Jan 11 '16 at 13:57