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 hasn't been helpful

Note: I don't want my project's revision number, etc. This question is about the subversion software itself.

link|improve this question
feedback

12 Answers

To find the version of the subversion REPOSITORY you can:

  1. Look to the repository on the web and on the bottom of the page it will say something like:
    "Powered by Subversion version 1.5.2 (r32768)."
  2. From the command line: <insert curl, grep oneliner here>

If not displayed, view source of the page

<svn version="1.6.13 (r1002816)" href="http://subversion.tigris.org/"> 

Now for the subversion CLIENT:

svn --version

will suffice

link|improve this answer
5  
This works only if the server will display this information, some server like google code hosting does not. – Andrea Francia Apr 5 '09 at 10:28
I doesn't look like source forge displays that data either. – deft_code Jun 16 '09 at 14:29
Is that the server version, or the repository version? (they can be different AFAIK) – GraemeF Jul 6 '10 at 15:58
feedback

svnserve --version

in case of svnserve-based configuration (svn:// and svn+xxx://).

(For completeness).

link|improve this answer
As Joe J mentions below, I believe this will just give you the version of the svnserve client program which will most likely match the svn client program – Kirby Oct 28 '11 at 23:45
3  
svnserve is not a client programme, it's the server. And you have to type the command above when you're on the server. – Milen A. Radev Oct 29 '11 at 13:11
1  
ah, sorry. That wasn't clear to me in your answer – Kirby Oct 31 '11 at 18:34
feedback

Here's the simplest way to get the SVN server version. http works even if your SVN repo requires https.

$ curl -X OPTIONS http://my-svn-domain/
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>...</head>
<body>...
<address>Apache/2.2.11 (Debian) DAV/2 SVN/1.5.6 PHP/5.2.9-4 ...</address>
</body>
</html>
link|improve this answer
This is what I needed. Vote up please! – bentford Nov 13 '09 at 13:48
5  
Works only when "ServerTokens Full" (httpd.apache.org/docs/2.2/mod/core.html#servertokens). – Milen A. Radev Dec 10 '09 at 17:11
feedback

For a http-based server there is a python script to find the server version at: http://svn.apache.org/repos/asf/subversion/trunk/tools/client-side/server-version.py

You can get the client version with

`svn --version`
link|improve this answer
3  
Unless I am mistaken, it looks like that script only works with http or https based servers, and not svn or ssh+svn servers – crashmstr Sep 26 '08 at 19:42
yes you are right – PiedPiper Sep 26 '08 at 19:48
If it's ssh based just ssh into the box and run "svn --version". – John Meagher Sep 26 '08 at 21:20
3  
'svn --version' on the server only gives you the client version running on the server, it might not necessarily be the same as the server version – PiedPiper Sep 26 '08 at 22:54
1  
That script also requires ServerTokens Full to be set on the Apache server. It will fail for the same servers that the curl solution will fail on. – yam655 Sep 8 '11 at 17:01
feedback

If the Subversion server version is not printed in the HTML listing, it is available in the HTTP RESPONSE header returned by the server. You can get it using this shell command

wget -S --spider 'http://svn.server.net/svn/repository' 2>&1 | \ 
grep 'SVN' | sed 's/.*\(SVN[0-9\/\.]*\).*/\1/';
link|improve this answer
1  
I tried all other options on this page, with curl and from the URL and this is so far the only one that worked for me - server is freebsd, server 1.6.16. – user432509 Jul 14 '11 at 10:16
Likewise this is the only answer that worked for me amongst all the answers here. I used Firefox Live HTTP Headers and to read the response of the server because I was also having ssl certificate problems that I didn't feel like going to the trouble to figure out. Thank you, Christopher – Kirby Oct 28 '11 at 23:46
feedback

In order to get the version number for your Subversion server, type this into the command line on the server:

svnadmin --version

To get your Subversion client version, type this into the command line

svn --version
link|improve this answer
5  
Won't typing "svnadmin --version" at the command line just show you the version of the svnadmin binary, not the version of the server? – Joe J May 25 '11 at 21:55
I believe Joe is correct – Kirby Oct 28 '11 at 23:44
feedback

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.

link|improve this answer
this assumes you can ssh to the server. It is common to configure an svn+ssh server with a public key in authorized_keys file and command=svnserve which automatically starts svnserver without the --version option. – jrwren Mar 16 at 13:38
feedback

Lets merge these responses:

For CLIENT:

svn --version

For REPOSITORY / SERVER:

if able to access subversion server:

  • from earlier answer by Manuel

    svnadmin --version
    

if http/https access:

  • See the "powered by Subversion" line when accessing the server via a browser
  • from earlier answers by elviejo, jaredjacobs: access the repository via browser and then look for the version string embedded in the HTML source
  • here is some script to do this, from an earlier answer by Christopher

    wget -S --spider 'http://svn.server.net/svn/repository' 2>&1 | grep 'SVN' | sed 's/.*\(SVN[0-9\/\.]*\).*/\1/';
    
  • (list other methods here)

if svn:// or ssh+svn access

  • From earlier answer by Milen

    svnserve --version
    
  • From earlier answer by Glenn

    ssh user@host svnserve --version
    

If custom svn servers (Google, etc)

    TBD

Please edit to finish this answer

link|improve this answer
feedback

You can connect to your subversion server using http and find the version number in the http header.

link|improve this answer
feedback

A repo is not automatically updated unless the admin runs 'svnadmin upgrade'.

To be sure of the version number of the repo, check the 'format' file. See @bdumitriu comment.

link|improve this answer
feedback

The following on the command line should give you the version number

   svn --version
link|improve this answer
3  
That only gives you the client's version (unless you run it on the server). (And even then, the server's svn client isn't necessarily the same version as the svn server, although it most likely is.) – cjm Sep 26 '08 at 19:34
4  
-1 This give only the subversion client number which isn't related to the server number. – Andrea Francia Apr 5 '09 at 10:30
feedback

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. ..." ...

link|improve this answer
This doesn't always work for all subversion servers – Kirby Oct 28 '11 at 23:45
feedback

Your Answer

 
or
required, but never shown