I just want to find out the version number of subversion we are running on our windows server, but I don't know how or where to input the $ svn --version. ANy idea where I type it in?

link|improve this question

78% accept rate
feedback

2 Answers

up vote 1 down vote accepted

The command prompt (Start -> Run -> cmd). If svn is in your path you can them simply type svn --version. If not, you will have to prefix the svn command with the path to svn.exe.

link|improve this answer
feedback

svn --version will tell you the version of the svn client .exe, not any particular server.

You need to find the svnserve.exe which is running on your server, and run that with svnserve.exe.

But see also:

http://stackoverflow.com/questions/141146/how-to-find-my-subversion-server-version-number

link|improve this answer
Should this question be on stackoverflow or serverfault? – digiguru Sep 21 '09 at 13:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.