vote up 5 vote down star

I'm currently reviewing the benefits of moving from SVN to a SourceGear Vault. Has anyone got advice or a link to a detailed comparison between the two? Bear in mind I would have to move my current Source Control system across which works strongly in SVN's favor

Here is some info I have found out thus far from my own investigations.

I have been taking some time tests between the two and vault seems to perform most operations much faster. Time tests used the same server as the repository, the same workstation client, and the same project.

Time Comparisons

  • SVN
Add/Commit    12:30 Get Latest Revision    5:35 Tagging/Labelling    0:01 Branching    N/A - I don't think true branching exists in SVN

  • Vault
Add/Commit    4:45 Get Latest Revision    0:51 Tagging/Labelling    0:30 Branching    3:23

(can't get this to format correctly)

I also found an online source comparing some other points. This is the kind of information i'm looking for.

Usage Comparisons

  • Subversion is edit/merge/commit only. Vault allows you to do either edit/merge/commit or checkout/edit/checkin.

  • Vault looks and acts just like VSS, which makes the learning curve effectively zero for VSS users.

  • Vault has a VS plugin, but it only works if you're going to run in checkout-mode.

  • Subversion has clients for pretty much every OS you can imagine; Vault has a GUI client for Windows and a command line client for Mono.

  • Both will support remote work, since both use HTTP as their transport (Subversion uses extended DAV, Vault uses SOAP).

  • Subversion installation, especially w/ Apache, is more complex.

  • Subversion has a lot of third party support. Vault has just a few things.

My question

Has anyone got advice or a link to a detailed comparison between the two?

flag

33% accept rate

9 Answers

vote up 8 vote down

Having used both 'in anger' I'd choose Subversion (with TortoiseSVN) over Vault every day.

When I went from Subversion to Vault this is what I noticed:

  • Can't do a get latest of everything I haven't changed, out of the box, in one easy step
  • Can't easily see anything that has changed
  • Vault tries, by default, to make everything I haven't checked out read only
  • I have to check things out
  • It's really slow to load (vault client) as opposed to always being there in explorer
  • Client navigation more awkward - than using Explorer
  • Easier to compare to older versions
  • Spell checker when entering comments when checking in
  • Everything was quicker and easier!

Obviously some of this is down to the way that Vault was configured, but you get the idea.

I ended up writing a bunch of scripts to automate the things that Vault couldn't do, but even then there are limitation on what the commandline version can do. Plus the Vault API isn't documented.

link|flag
'read-only' checked-in files is an option: You can choose to work ala VSS (read-only files. check-out first) or ala SVN. – Serge - appTranslator Oct 23 at 9:28
@Serge Yes this was a result of the configuration used by the company I was working with at the time. – Matt Lacey Oct 23 at 10:35
vote up 3 vote down

The Source gear website has a comparison. However I would suggest neither. If your moving to a new repository you want to be looking at a distributed version control system.

The likes of Monotone, Git and Bazaar have really raised the bar in terms of productivity.

link|flag
Thanks that's a great reference doc. But you can't help but suspect bias. I forgot to mention i'm a Microsoft .NET visual studio developer. Does this change your suggestion? i.e. Does Monotone, Git or Bazaar play nicely with .net projects and Visual Studio? – WebDude Oct 8 '08 at 12:45
I have used Monotone with a couple of .net web projects. It works great with them. – Phil Hannent Dec 3 '08 at 10:45
vote up 2 vote down

Subversion also has VisualStudio plugins:

link|flag
vote up 2 vote down

I use Vault, so I'd like to correct one error in your feature list:

Vault has a VS plugin, but it only works if you're going to run in checkout-mode.

Not true - I'm unsure of which version it was added in, but you can run vault in Edit|Merge|Commit mode in Visual Studio

I would also add that Vault uses MS SQL Server as it's repository - makes backups easy.

link|flag
1  
Vault provides two plugin's one (Enhanced Client (VSIP)) supports Edit|Merge|Commit the older one Classic Client (MSSCII) only supports check in and out mode. – John Mar 19 at 16:48
vote up 1 vote down

Subversion has a lot of third party support. Vault has just a few things.

Surely where Subversion has 3rd party support, Vault has 1st party support since you have purchased it.In my experience, first hand information (from the makers) tends to be better than 14 forums spread over the world? Though we now have SO so this point may be mute. :)

link|flag
1  
The Vault support folks are pretty quick off the mark as well. Paying my $250 annual maintenance is well worth it for those trouser changing 'shouldn't have done that' moments. – Kev Jan 13 '09 at 18:21
CollabNet (who payed for creating Subversion) actively supports the project commercially. (Including the AnkhSVN and TortoiseSVN clients). You can buy several levels of support (including 24/7). – Bert Huijben Feb 6 at 12:23
@Kev, I wholeheartedly agree. – JV Oct 1 at 17:47
vote up 1 vote down

Subversion has locks as well. I've never needed them, though.

link|flag
vote up 1 vote down

Subversion allows you to mark files as 'must-lock', in that case checkout (lock), checkin (commit with auto unlock) works. AnkhSVN visualizes this just like the VSS Check in check out.

Subversion has:

  • TortoiseSVN for Windows Explorer
  • AnkhSVN, A free real SCC Provider for Visual Studio. (not complete yet, but getting better every day)
  • VisualSVN, TortoiseSVN like integration for Visual Studio (Commercial)
  • SvnBook, a great online & free manual

Subversion will get a more efficient HTTP protocol in 1.6 or 1.7 (Work in progress). This might make it possible to create an IIS plugin.

See the subversion book on branching and merging in Subversion.

link|flag
vote up 1 vote down

SVN has true branching http://svnbook.red-bean.com/en/1.1/ch04.html, branching is just handled differently than most source code control systems.

link|flag
If you go to the 1.5 version of the book you will also find merge examples in the branch chapter. – Bert Huijben Oct 8 '08 at 12:16
vote up 0 vote down

Forums are difficult to trawl but give many clues to get the best out of all the trials and errors that people have been through.

Makers comments can be biased and unsure whether they just try to offer their workaround only.

link|flag

Your Answer

Get an OpenID
or

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