tags:

views:

1210

answers:

1

I'm looking for something like:

svnserve stop
+3  A: 

The recommended way is to do it is by using the kill command which will allow subversion to shut down properly. I don't think there is any better way to do it.

Robert Gamble
On *nix, kill w/o any special options will instruct the program to do a graceful shutdown. On Windows, I think it will terminate with extreme prejudice... if you have a terminal window open where you launched the thing, you can always use Ctrl+C
rmeador
This is true but if you were running svnserve on Windows you should really be running it as a service instead of using -d in which case you would just use the Service Manager to shut it down.
Robert Gamble