Cancel SVN CHECKOUT

There are a few "undo svn checkout" questions here, but none of them have found an answer to the question of how to literally undo svn checkout. Is there a way other than manual removal? (It's safer and faster than manually browsing a couple hundred files.)

I was browsing the directory via command line and instead of typing

svn checkout svn://server/project/ .

I sealed and put svn checkout svn://server/project/ /

If you are missing what I say, instead of checking the project in the current folder, it was checked on the root server and there are now about a hundred files mixed in with the root.

Someone decided to put .

and /

next to each other on the keyboard ...

+3


source to share


2 answers


Won't

svn up --set-depth empty /

      



do the trick?

+7


source


If you are asking if there is an SVN team to do your job, the answer is no. You need to manually delete the files.



+4


source







All Articles