0

What do I need to do in order to recover from a failed SVN checkout? My internet connection dropped mid-checkout.

Zoe
  • 27,060
  • 21
  • 118
  • 148
acedanger
  • 1,197
  • 2
  • 15
  • 34

2 Answers2

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
0

Just perform

cd WC + svn up

Lazy Badger
  • 94,711
  • 9
  • 78
  • 110