I want to know if my server is running Subversion 1.5.
How can I find that out?
Also would be nice to know my SVN client version number. svn help
Just use a web browser to go to the SVN address. Check the source code (Ctrl + U). Then you will find something like in the HTML code:
<svn version="1.6. ..." ...
One more option: If you have Firefox (I am using 14.0.1) and a SVN web interface:
There should be an "SVN/1.7.4" string or similar there. Again, this will probably only work if you have "ServerTokens Full" as mentioned above.
For a svn+ssh configuration, use ssh to run svnserve --version on the host machine:
$ ssh user@host svnserve --version
It is necessary to run the svnserve command on the machine that is actually serving as the server.
If you use VisualSVN Server, you can find out the version number by several different means.
Follow these steps to find out the version via the management console:
If you click Version you will also see the versions of the components.
Follow these steps to find out the version from the readme.txt file:
Try this:
ssh your_user@your_server svnserve --version
svnserve, version 1.3.1 (r19032)
compiled May 8 2006, 07:38:44
I hope it helps.
On the server: svnserve --version
in case of svnserve-based configuration (svn:// and svn+xxx://).
(For completeness).