What do I need to do in order to recover from a failed SVN checkout? My internet connection dropped mid-checkout.
Asked
Active
Viewed 1,527 times
0
-
did you try to do the command again? – Mar 07 '12 at 19:08
2 Answers
2
Try this:
$ svn revert
$ svn cleanup
$ svn up

Tomasz Nurkiewicz
- 334,321
- 69
- 703
- 674
-
@acedanger: I don't think you need network connection for `revert` and `cleanup`, but certainly you need for `up`. The bottom line is - make a backup copy of your whole working directory and experiment. – Tomasz Nurkiewicz Mar 07 '12 at 19:22