Hi,
probably this is a very easy question but I did not find yet how to delete all files present at the moment in a external svn repository.
I can delete just one file using:
svn delete -m "delete README" http://myrepo.com/svn/myrepo/README
But now I want to delete all of them. I thought about a script which gets the list of all the files of the repository and afterwards deletes them one by one, but this is tedious, do you know a simpler solution?
I also tried
svn rm http://myrepo.com/svn/myrepo svn delete http://myrepo.com/svn/myrepo/*
But nothing
Thanks