0

Seems like the Subversion Edge Restful API isn't able to (completely) delete a repository - only to create one. Also, sharpSvn seems to work only on repositorly-level and lower, which means, no deletion of repository also... So is there a way to programmatically remove a repository in Subversion Edge?

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
shay__
  • 178
  • 1
  • 10

1 Answers1

1

No, there's no option to delete a repository using only the uberSVN APIs. This is an administrative task, one that is best accomplished using the command line tool "rm". Removing a repository is the same as removing a folder on a file system.

The creation of a repository was always a strange one to me, I don't think it should be part of the normal uberSVN APIs anyway, as it too is a admin-level task that gets used infrequently.

bahrep
  • 29,961
  • 12
  • 103
  • 150
gbjbaanb
  • 51,617
  • 12
  • 104
  • 148
  • Thanks a lot! could you please elaborate on this? I only know to use the api's, so a code example can be very helpful here.. – shay__ Aug 15 '12 at 08:35
  • uberSvn has an API and SvnEdge has an api, but these aren't the same APIs. Both are supported by different companies. – Bert Huijben Aug 21 '12 at 16:36