9

So, I created a repository like so: svnadmin create /path/to/repository

What's the equivalent for deleting? I couldn't find it.

Strawberry
  • 1,112
  • 4
  • 15
  • 27

2 Answers2

13

Since a repository is not a single file but a directory structure (conf, dav, db, ...) you might want to use

rm -rf /path/to/directory
pacey
  • 3,833
  • 1
  • 15
  • 31
3

rm -rf /path/to/repository

Joril
  • 1,513
  • 1
  • 19
  • 27