0

How do you fix this scenario? So basically I am in PROD/WHOTest file and typed svn del trunk

Have not committed changes yet. How do you back out?

svn del --keep local trunk
or svn revert trunk

Widor
  • 13,003
  • 7
  • 42
  • 64
Janet Morris
  • 41
  • 1
  • 3

1 Answers1

2

svn revert . should do the trick. With TortoiseSVN, select the directory which contained trunk, and revert.

svn del --keep-local is used to delete a file or folder in SVN, but keeping the file or folder in the working copy.

JB Nizet
  • 678,734
  • 91
  • 1,224
  • 1,255