Smashing Magazine - we smash you with the information that will make your life easier. really.
7 Version Control Systems Reviewed
If you’ve ever collaborated with other people on a project, you know the frustration of constantly swapping files. Some do it by email, some through file upload services and some by other methods. It’s a pain in the neck, and every designer and developer knows it. Revision control is an excellent way to combat the problem of sharing files between workers.
Most web-developers have probably worked with some sort of revision control system, but designers may find it a foreign concept. The most obvious benefit of using revision control is the ability to have an unlimited number of people working on the same code base, without having to constantly send files back and forth.
But designers and developers can both benefit from using revision control systems to keep copies of their files and designs. You can instantly browse previous “commits” to your repository and revert to earlier versions if something happens.
This article reviews some of the top open-source version control systems and tools that make setting up a version control system easy.
CVS
CVS is the grandfather of revision control systems. It was first released in 1986, and Google Code still hosts the original Usenet post announcing CVS. CVS is the de facto standard and is installed virtually everywhere. However, the code base isn’t as fully featured as SVN or other solutions.
The learning curve isn’t too steep for CVS, and it’s a very simple system for making sure files and revisions are kept up to date. While CVS may be an older technology, it’s still quite useful for any designer or developer for backing up and sharing files.
Tortoise CVS is a great client for CVS on Windows, and there are many different IDEs, such as Xcode (Mac), Eclipse, NetBeans and Emacs, that use CVS.
CVS Resources
- Introduction to CVS
- CVS Best Practices
- SVN and CVS Quick Comparison
- Version Control with CVS on Mac OS X
SVN
Subversion is probably the version control system with the widest adoption. Most open-source projects use Subversion as a repository because other larger projects, such as SourceForge, Apache, Python, Ruby and many others, use it as well. Google Code uses Subversion exclusively to distribute code.
Because of Subversion’s popularity, many different Subversion clients are available. If you’re a Windows user, Tortoise SVN is a great file browser for viewing, editing and modifying your Subversion code base. If you’re on a Mac, Versions is an elegant client that provides a “pleasant way to work with Subversion.” Xcode is Apple’s developer environment and Subversion client that ships with Leopard on a Mac.
SVN Resources
- Subversion home page
- Getting Started with Subversion – Mac
- Getting Started with Subversion – Windows
- Subversion for Designers
- Beanstalk – A hosted Subversion system
- Comparison of Subversion Clients
- Subversion for Java
Git
Git is the new fast-rising star of version control systems. Initially developed by Linux kernel creator Linus Torvalds, Git has recently taken the Web development community by storm. Git offers a much different type of version control in that it’s a distributed version control system. With a distributed version control system, there isn’t one centralized code base to pull the code from. Different branches hold different parts of the code. Other version control systems, such as SVN and CVS, use centralized version control, meaning that only one master copy of the software is used.
Git prides itself on being a fast and efficient system, and many major open-source projects use Git to power their repositories; projects like:
GitHub has recently helped establish Git as a great version control system, providing a beautiful front end for many large projects, such as Rails and Prototype. However, Git isn’t as easy to pick up as CVS or SVN, so it’s much harder to use for a beginner.
Git Resources
- Git on Wikipedia
- Git SVN Comparison
- git-gui – a multi-platform user interface for Git
Mercurial
Mercurial is another open-source distributed version control system, like Git. Mercurial was designed for larger projects, most likely outside the scope of designers and independent Web developers. That doesn’t mean that small development teams can’t or shouldn’t use it. Mercurial is extremely fast, and the creators built the software with performance as the most important feature. The name “mercurial” is an adjective that means “Relating to or having characteristics (eloquence, swiftness, cleverness) attributed to the god Mercury.”
Aside from being very fast and scalable, Mercurial is a much simpler system than Git, which is why it appeals to some developers. There aren’t as many functions to learn, and the functions are similar to those in other CVS systems. It also comes equipped with a stand-alone Web interface and extensive documentation on understanding Mercurial if you have been using another system.
Resources for Mercurial
- Mercurial tutorial – An in-depth tutorial on installing and working with Mercurial.
- List of GUI tools for Mercurial – Tools to use with any platform for working with Mercurial.
- Understanding Mercurial – A nice document explaining what Mercurial does and doesn’t do.
- Use Mercurial, you Git!- A pro-Mercurial article highlighting reasons why Mercurial is better than Git.
Bazaar
Bazaar is yet another distributed version control system, like Mercurial and Git, that offers a very friendly user experience. It calls itself “Version control for human beings.” It supports many different types of workflows, from solo to centralized to decentralized, with many variations in between.
One of the main features of Bazaar is the fine-grained control you’ll have over the setup. As shown with the workflows, you can use it to fit almost any scenario of users and setups. This is a great revision control system for nearly any project because it’s so easy to modify. It’s also embeddable, so you can add it to existing projects.
Bazaar also has a strong community that maintains things like plug-ins and lots of third-party tools, such as GUI software to add a graphical interface to the system.
Bazaar resources:
- Bazaar documentation – Tons of resources for learning everything about Bazaar.
- Bazaar in 5 minutes – How to set up Bazaar quickly.
- Bazaar migration guides – Guides on migrating to Bazaar from CVS, Subversion, Darcs, Mercurial and other systems.
- Bazaar vs. Git – Showcases the differences between the two decentralized systems.
LibreSource
LibreSource is a Web portal used to manage collaborative projects. It’s based on Java/J2EE and is more a set of visual collaborative tools to help facilitate projects and teams. While the other systems discussed so far have been designed more on a “command line” level, LibreSource is centered more on tools that don’t have a big learning curve.
It has built-in features such as Wiki pages, forums, trackers, Synchronizers, Subversion repositories, files, download areas, drop boxes, forms, instant messaging and more. Think of LibreSource as a collaboration hub for project development.
LibreSource is perfect for the developer or designer who doesn’t want to learn lots of technical jargon and wants to focus more on communication with the project’s members. Just install the package and start collaborating, without facing much of a learning curve.
Resources for LibreSource
- LibreSource Documentation – Tons of articles and tutorials for getting familiar with LibreSource.
- LibreSource vs. Subversion – A table showing the differences between LibreSource and Subversion.
Monotone
Monotone is the baby of the distributed revision control bunch. While many of Monotone’s peers focus on performance, Monotone places higher value on integrity than performance. In fact, it can take quite a bit of time for a new user of Monotone to simply download the initial repository due to the extensive validation and authentication required.
Monotone is fairly easy to learn if you’re familiar with CVS systems, and it can import previous CVS projects. However, it’s not quite as popular as other version control systems.
Monotone Resources
- Monotone Wiki – Monotone has extensive documentation.
- Monotone front ends and Tools – Lengthy list of front ends for working with Monotone, as well as other development tools.
Version Control Tools
- QCT GUI commit tool
A version control commit tool that supports Mercurial, Bazaar, Cogito (Git), Subversion, Monotone, and CVS. - Meld is a merge and diff tool that allows you to compare two or three files and edit them in place, while updating automatically. It works with CVS, Subversion, Bazaar and Mercurial.
- Push Me Pull You is another GUI for distributed version control systems. It works with Mercurial, Git, Bazaar and Darcs.
Version Control Resources
- Distributed Revision Control Systems: Git vs. Mercurial vs. SVN
A quick look at the major differences between the three types of revision control systems. - Revision Control Systems
The Wikipedia article on revision control. - Choosing a Distributed Version Control System
Article showing the pros and cons of each version control system. (al)
Glen Stansberry is the editor at Web Jackalope, a blog about creative Web development.
- 94 Comments
- 1
- 2September 18th, 2008 9:54 am
My favorite GUI SVN Client is SmartSVN. Cross platform and easy to use. The compare tool is one of the best I’ve seen.
- 3September 18th, 2008 10:00 am
I used to use svn with Versions, but I can’t really say I enjoyed the experience. If you’re not afraid of terminal, I’d recommend you give Git a try. Once you have figured out how to set it up, it’s a breeze to use.
- 4September 18th, 2008 10:20 am
I’ve recently switched over to Mercurial (abbreviated Hg after Mercury) after using SVN for years and finding Git’s mish-mash of sub-programs horrendous to use (the quality varies so much, whereas Hg is pure Python code throughout). Also, how come you didn’t mention Mozilla use Hg for Firefox etc? I just wish their were more GUI clients for Hg on Mac.
- 5September 18th, 2008 10:37 am
best tool is textmate’s integrated svn :)
- 6September 18th, 2008 10:44 am
I always used Tortoise CVS it works great!
Have to check the other ones out ass well soon.nice post again….
- 7September 18th, 2008 10:51 am
One major downside to CVS is that it doesn’t support binary diffs. So if you use it for more than code you end up with a lot of duplication. The other tools are more efficient so if for example you have a website project you can include images, mock-ups and such in the repository as well.
- 8September 18th, 2008 11:20 am
I recently switched to Git although it took a little while to pick things up it was worthwhile. I stringly suggest getting the Peepcode Screencast on Git. It was the best $9 I’ve spent and well worth the hour to run through it.
- 9September 18th, 2008 11:23 am
I’d like to note that the Fedora Project doesn’t use git in quite the way you represent. Packaging, the major use of version control for Fedora is currently done in cvs with many people exploring how we can move to one or more other version control systems.
The link you have is actually to the fedorahosted.org service that we run. The canonical URL is http://git.fedorahosted.org/git We have hosting services for various upstream projects. We support git, hg (http://hg.fedorahosted.org/hg), bzr (http://bzr.fedorahosted.org/bzr), and subversion in fedorahosted.
- 10September 18th, 2008 11:26 am
I use CVS and SVN quite a lot, never knew about the others
- 11September 18th, 2008 11:37 am
I’m using the subversion way, with svn on Ubuntu as client. Nice listing by the way
- 12September 18th, 2008 11:48 am
Excellent list. Also very helpful.
- 13September 18th, 2008 11:53 am
I think that Git is becaming more and more popular because of the Rails Community, but Mercurial and Baazar are also good choices.
Very Nice Listing. Thanks! - 14September 18th, 2008 12:32 pm
I just switched to using SVN for my web development projects and I will never go back. For OS X using Versions Versions has been a pleasant way to implement SVN into my workflow. Combine Versions with Changes Changes for diff comparison and I’m pretty sure you’ll never go back to “file.htm.old” again.
- 15September 18th, 2008 1:43 pm
My favorite goes to Subversion (hosted @ Beanstalk) with Tortoise as client.
The ultimate combo ! - 16September 18th, 2008 1:46 pm
Great article! I’ll definitely give a chance to Bazaar.
jQuery tips, version control… looks like some developpers are sneaking inside SM :)
- 17September 18th, 2008 4:30 pm
VersionsVersions for Mac OSX is great! It’s still in Beta, but far superior and more user-friendly than all of the other SVN clients I’ve tried for either Mac or PC.
- 18September 18th, 2008 5:53 pm
I use TortiseSVN on Windows and svnX for Mac. For Hosted SVN we use Springloops which is similar to Beanstalk but has a friendly UI and Deployment actually makes sense.
- 19September 18th, 2008 9:19 pm
We use SVN from long time and is very great as a versioning tool. As a client we use mixed, TortoiseSVN (admin, advanced users) and SVN for Dreamweaver (visual developers, HTML coders).
This 2 combination is the best we find out. - 20September 18th, 2008 10:32 pm
Excellent info.
I have used CVS before and not dared to use any other yet.
Will try to use others sometime.Pathange Vinay
- 21September 18th, 2008 11:52 pm
Excellent info.
I’m just about to introduce version control for my company projects. The list came at just the right time, before I pick something that boxes us into a corner.Mark Jones
- 22September 19th, 2008 12:08 am
Take a look at DropBox project (website here).
It’s main purpouse is to provide folders which can be synchronized among few computers. It’s not a typical CVS software, but You can use it for a small project groups. It’s easy to use, has a web interface nad runs under linux/windows (not sure about Mac). I strongly recommend it.(this is not an add :-) )
- 23September 19th, 2008 12:12 am
I have used all the above (except LibreSource) + GNU Arch, SVK (with SVN backend). The best according to me (right balance) is Hg/Mercurial. For a real pro wanting full control and needs raw speed (little faster than hg) is Git. Git is cool but beware that you can easily mess around by trying commands that a novice should not be playing with!
- 24September 19th, 2008 12:16 am
brilliant – I used to use 4projects, VCS is much better for virtual teams than email :)
- 25September 19th, 2008 12:48 am
I find Git is much easier to learn than subversion. Type “
git init” and your repository is ready. Compare this to subversion: “svnadmin create --fs-type fsfs .” Not to mention branching, tagging, renaming or removing files.
There are much more commands in Git than in Subversion, but you need only a few for daily work. - 26September 19th, 2008 1:24 am
Never used this kind of applications before, but will certainly give it a go.
Do any of these tools work for images as well code, as this will be ideal. - 27September 19th, 2008 2:31 am
Ever since I switched from SVN to Git, I have been glad I made the switch. Being able to have the flexibility that Git brings to the table is just an amazing facet to development.
- 28September 19th, 2008 3:48 am
I use svn via VisualSVN – there server was free and took about 10 minutes to setup and their client (although you’re not forced to use it) integrates itself into Visual Studio seamlessly.
- 29
- 30September 19th, 2008 6:39 am
I appreciate the article. But I’d like to extend the question. I’m a lone and very basic developer with no current experience with version control systems. A friend recommended SVN but I’ve barely gotten my hands around Eclipse and Mysql. which are the current backbone of my development environment. I am using the Brit, Eclipse based, report writer against MySql databases.(I’m on windows, XP and vista with Freeware only) I’ve looked at the Svn documentation, but am very wary of adding that complexity into the environment I barely understand. I’d like to continue to set up an environment that can grow, (languages and tools) as I do. I only have so much bandwidth for learning!
What advice does this much smarter crowd have to offer???
- 31September 19th, 2008 6:40 am
Does anybody have any information on job/part number applications for design? Working at a larger company we would like to have a piece of software that allows to look up part numbers etc that we can place at the bottom of our printed documents.
Version control would also be nice. Just wondering if anybody had any experience with this.
Thanks
- 32September 19th, 2008 7:34 am
Mercurial section should include link to Bitbucket – a equivalent of GitHub
- 33September 19th, 2008 10:23 am
Just finished setting up SubVersion/Apache server with TortoiseSVN clients for a pile of legacy code with myriad branches. I like it so far, finally get lazy boss to almost document his changes (using “log required” policy). At least now I know where and what they are and the order they occurred.
My only prior experience was SourceSafe and PVCS, so I cannot compare to the distributed products. I will say that I would have a concern over the integrity of multiple repositories.
I liked the article and found it very informative.
- 34September 19th, 2008 1:41 pm
The article is right on time but I’m wondering about this:
How do you use svn in a graphic studio for files like .cdr, .jpg, .indd etc? - 35September 19th, 2008 5:19 pm
Tom Brander: You should definitely give version control a try. It’s nice even for a single developer. And you can start off very simply: at a minimum, you only need to know how to set up a repository and check in your code and changes. Then you can go on your way, knowing that all your changes exist in the repository if you ever need them. You can put off learning even simple things like how to look through the history and fetch old versions until you actually need them (or are bored and have some spare bandwidth for learning).
I won’t try and tell you which you should use…it probably doesn’t matter too much. Getting started with any one should be pretty simple, and the basic concepts will transfer reasonably well if you decide to switch later. If you have a friend who uses SVN, that may well be the best choice for you. I think the biggest hurdle getting started is figuring out the terminology — sometimes you know what effect you want to achieve, but not what it’s called in the documentation. So having someone to ask questions of can be helpful.
Good luck!
–Josh
- 36September 19th, 2008 10:28 pm
Hey Thanks for this, this would definitely help a lot.
Cheers :)
M - 37September 19th, 2008 11:18 pm
nice huge list.thanks for this one.its very useful
- 38September 20th, 2008 12:45 am
Very thorough set of reviews – SVN’s been a bit of a fearful topic for me (a designer) after having some horrible experiences with Tortoise SVN a few years back that had to do with a problem between swapping files across OS’s… I’ve always held out hope that a new wave of SVN tools would make some of the tricker parts of SVN easier to use, and from this list I think I’ll end up trying out at least a few. Thanks for the great information. MakeDesign,NotWar
- 39September 20th, 2008 11:40 am
Well done!!! Keep on smashing us!!
- 40September 20th, 2008 12:18 pm
Joshua, Thanks for the advice, That’s along the lines of what I’ve been thinking, I guess I’ll just have to leap, like with most things! I’ll probably try SVN, with one of the Eclipse plug ins, and go from there.
Tom - 41September 20th, 2008 1:53 pm
Tourtoise svn and the svn plugin for eclipse are really the best in my oppinion
- 42September 21st, 2008 12:53 am
You have one important thing forgotten: for most shared projects, there have to be an extra server, mostly Apache. For CVS and SVN, there have to be a customized configuration, for e.g. the mod_dav has to be activated for CVS and SVN, but not for Bazaar. To know, if a custom configuration is required or if the SCM system fits to the default configuration, is important for many people. They’ll learn which SCM systems could be used cost-effective and fast to set up.
- 43September 21st, 2008 5:57 am
1. I usually work in projects involving very large files (lossless compression video files) and it would be nice if everyone on the team had local access to the files, because it’s way to slow to work across the network. Would any of this systems be right for me?
2. what about disk space? As far as I understand all of this system allow the users to go back to earlier versions, that will probably take a lot of disk space since they are big bynary files and a lot of things change. Is it possible not keep the history?
- 44September 22nd, 2008 3:58 am
sccs was the first verison control system I’m aware of, UNIX System III from AT&T/Bell Labs circa 1981.
- 45September 22nd, 2008 2:28 pm
You guys really gave Monotone short shrift here- it’s quite a nice setup with some very smart people working on it.
- 46September 23rd, 2008 2:41 am
An excellent comparison worthy of Smashing Magazine. I’m glad to see that Smashing has been writing more lately on back-end development (i.e., scripting, version control, etc.) as well as the design-focused posts that we’ve all come to know and love you for. I think, for me at least, you’ve hit just the right mix!
- 47September 23rd, 2008 2:05 pm
SpringLoops are pretty good!
- 48September 23rd, 2008 10:27 pm
Thanks and really a great knowledge base ! As far as now I have used CVS as well as SVN. I am using it on a Mac platform and its really very helpful for the easy version control of the various doc’s I work regularly as a part of quality Control. I am using iSVN on a Mac platform. Great post fr the beginners!
- 49September 25th, 2008 1:15 pm
With topics like these and some unanswered questions I really wish there’s a forum on this site to discuss and share the knowledge beyond comments… but that’s just a thought :)
- 50September 27th, 2008 11:13 am
Bazaar’s the shit. It’s so easy to setup and to use, I’m inclined to say it’s the almost perfect version control system for any not-so-tech-savvy designer, if ever needed. Even using it on the command line is pretty simple.
I always feared vc but wanted to get into it, as it really can save you from headaches. I started reading a book about Subversion three times but always gave up. Not that I could not understand it, I’m more of a developer than a designer, but it bored me to death. Now Bazaar is really simple to get started with and has a pretty easy to understand user guide that will walk you through the very basic steps needed to maintain projects. Sometimes you won’t need anything more. And if you do need more later on, be sure, Bazaar has it; despite its simplicity.
P.S.: I’m not on Canonical Ltd.’s payroll. :P
- 51October 1st, 2008 3:04 am
There’s also Fossil – http://www.fossil-scm.org
It’s interesting because it uses SQLite for it’s repository storage. This makes the repositories easy to move around. - 52October 7th, 2008 8:54 am
We are working on a SVN client integrated in Photoshop.
This will be a plugin which will let you perform all version control operations directly from Photoshop, and it will make the whole process much nicer and easier too.
The plugin will be implemented for both Mac and Windows, and it will also have a hosted web space for files.
At the moment we are looking for beta testers for the project. If you are a designer who uses version control (or would like to start using version control) please send us an e-mail to beta@pixelnovel.com, and we will contact you as soon as the beta version is ready for testing.
- 53November 11th, 2008 4:18 am
You forgot to mention CVSNT that implements lots of feature plain old CVS lacks (i.e. binary deltas).
- 54January 23rd, 2009 12:51 pm
I found this helpful for a couple months, then I learned I could get a 2-user license of Accurev for free. It’s way more fun to use than my SVN for my home projects.
http://www.accurev.com - 55February 4th, 2009 3:32 pm
Nice one!
I think i’ve decided to starting using some kind of SCM for all my drupal projects. Considering the fact i know very little about programming and that Git, as promising as it sounds, seems to back off even exoerienced developers, seems i’ll be trying out bazzar first… maybe just to get the hang of SCM..
Anyway,… thanks!
- 56April 15th, 2009 4:10 am
The style of writing is quite familiar to me. Have you written guest posts for other blogs?
- 57May 7th, 2009 2:27 am
Maybe an idea to create a poll? Be good to see the most popular version control systems, I’ve only used SVN previously but would like to try out newer more popular ones.
- 58June 5th, 2009 8:16 am
A poll is a nice idea.
- 59June 28th, 2009 8:11 am
It may be helpful to mention that in 9/10 companies in any sector Rational ClearCase (UCM) is the defacto CM system. Just to put the opensource alternatives in perspective.
- 60July 1st, 2009 1:07 pm
Version Control Systems is like colors. Try some of them and choose the one you like most.
I started to use VCSs with CVS and worked with it for 2 years, then move to Subversion, then SVK (A kind of distributed Subversion, really good also) and now I am testing Mercurial. I liked the Mercurial simplicity. And it’s command syntax is very similar to SVN syntax. Before using it I gave a look at GIT and didn’t like the fact of have to use hundreds of executables. In mercurial there is only the command ‘hg’. If you don’t know something just use ‘hg help’. To start a new project just run “hg init myproject” and you have a new repository ready to use. Perfect for all size of projectsAnd now Google Code supports Mercurial too: http://google-code-updates.blogspot.com/2009/04/mercurial-support-for-project-hosting.html
And Cogmios, I’m a JEE and Python programmer, worked for several companies of all size and never saw no one using ClearCase. I don’t think it is the defacto CM in any sector beside perhaps the one that uses RUP.
- 61September 9th, 2009 1:03 am
You should Fossil to the list as an up-and-coming star.
It has features and is tiny, can be run from any server or home computer, et al.But even more important for designers is to skip all the above and use the version control built into photoshop [note, I use Mercurial (some) and GIT(alot) myself, but wouldn't wish it on a non-programmer]
- 00
There are no trackbacks at this time. If you are interested in leaving a trackback, please use this URL.
Leave a Comment
Make sure you enter the * required information where indicated. Please also rate the article as it will help us decide future content and posts. Comments are moderated – and rel="nofollow" is in use. Please no link dropping, no keywords or domains as names; do not spam, and do not advertise!
Interact
Popular
- 100 Wordpress Themes
- Photoshop Tutorials
- Fantastic Wallpapers
- 40+ Excellent Freefonts
- Dual-Screen Wallpapers
- Wordpress Themes for 2009
- Illustrator Tutorials
- Incredible Free Icon Sets
- High-Quality Free Fonts
- 30 Scripts For Galleries
- Photoshop Text Effects
- Useful Icon Sets
- Web Design Trends
- iPhone Wallpapers
- Before Launching a Website
- CSS Layouts And Templates
- Photoshop Actions
- Stunning Pictures and Photos
- Fantastic HDR Pictures
- Logo Design Tutorials
- Free Design Templates
- 10 Mistakes In Logo Design
- Photoshop Custom Shapes
- 40 Creative Design Layouts
- 8 Layout Solutions
- 53 CSS Techniques
- Photography Techniques
- Black & White Photography
- Styling Design Elements
- CSS-Based Forms
- 50 jQuery Techniques
- 50 Portfolio Websites
- 50 CSS Techniques
- Creative Logo Designs
- Desktop Wallpapers
- 25 Open Source Mac Apps
- 50 Free Icon Sets
- The Big Showcase Of Online T-Shirt Stores - http://bit.ly/5Tq8uA
- @ilmv oh ok then ;)
- @ilmv no, the SM Book will not be out of date :) We made sure it contains universal design, usability and marketing principles.
- Apple ad bombing Windows 7 on Google - http://bit.ly/28ctPq
- Atatonic - a fresh CSS framework - http://bit.ly/4oOV2w (via @umutm)
- @HrvojeKC yes, that's an interesting idea. Maybe when the waiting is over, we'll write a detailed post about it.











Wow, thanks, never used any of those applications but I will certainly check out some of those. Thanks.