tags:

views:

84

answers:

3

what is the Difference between tortoise svn and CollabNetSubversion.....

+3  A: 

One is a graphical client (or rather, a shell extension for Windows) and the other is a command-line client1. Usage differs greatly as do convenience features, however, the basic feature set to work with Subversion repositories is exactly the same as they both use the same library.

As for the Subversion server, that's actually a different piece of software, although it is sometimes distributed alongside with the command-line client.


1 Side note: I have long since stopped using the CollabNet-branded version because it's behind a registration wall. I found Slik SVN as a good alternative. It's exactly the same command-line client you get from CollabNet, sans the hassle in downloading it.

Joey
ok then installing svn means we need to install svn server rt?is it different from both of these?
The server is yet another piece of software. It is included in some command-line SVN distributions, though.
Joey
ok that means shall i need to install server seperately or is it fine to install svnclient ?
+1  A: 

One (Tortoise) is a GUI and the other is a command-line tool. However, both are built with the same SVN libraries and can be used together to access the same repositories. Some things, like using within a script, are easier with the command-line (and vice versa, of course) - I find it desirable to have both installed.

anon
+1  A: 

Subversion, which is now supported by Apache, is a source control system.

Svn is the abbreviation for Subversion.

Tortoise SVN is a Subversion client, implemented as a Windows shell extension.

You have to install Subversion if you want a source control system.

Gilbert Le Blanc