4thSpace
4thSpace

Reputation: 44312

How to find SVN version?

I'm on a Windows machine. When I type in svn --version, I get this:

'svn' is not recognized as an internal or external command, operable program or batch file.

I'm using TortoiseSVN. Is there some way to view the version through it?

I have looked at this but the server does not output any version information: How to find my Subversion server version number?

Upvotes: 9

Views: 25305

Answers (2)

bahrep
bahrep

Reputation: 30662

The error means that the svn.exe client is either missing on your computer or its parent path is not included in the %PATH% environment variable.

Upvotes: 0

bartexsz
bartexsz

Reputation: 259

If you have TortoiseSVN integrated with Windows File Explorer, then you can follow these steps:

  1. Right-click on the desktop or in the File Explorer.
  2. Click TortoiseSVN.
  3. Click About. Versions of the components used by TortoiseSVN are listed there.

enter image description here

Upvotes: 12

Related Questions