I've been using Subversion for a few years and after using SourceSafe, I just love Subversion. Combined with TortoiseSVN, I can't really imagine how it could be any better. Yet there's a growing number of developers claiming that Subversion has problems and that we should be moving to the new breed of distributed version control systems, such as Git. Can anyone explain how Git improves upon Subversion?
|
60
|
|
|
|
|
|
Git is not better than Subversion. But is also not worse. It's different. The key difference is that it is decentralized. Imagine you are a developer on the road, you develop on your laptop and you want to have source control so that you can go back 3 hours. With Subversion, you have a Problem: The SVN Repository may be in a location you can't reach (in your company, and you don't have internet at the moment), you cannot commit. If you want to make a copy of your code, you have to literally copy/paste it. With Git, you do not have this problem. Your local copy is a repository, and you can commit to it and get all benefits of source control. When you regain connectivity to the main repository, you can commit against it. This looks good at first, but just keep in mind the added complexity to this approach. Git seems to be the "new, shiny, cool" thing. It's by no means bad (there is a reason Linus wrote it for the Linux Kernel development after all), but I feel that many people jump on the "Distributed Source Control" train just because it's new and is written by Linus Torvalds, without actually knowing why/if it's better. Subversion has Problems, but so does Git, Mercurial, CVS, TFS or whatever. |
||||||||||||||||||||
|
|
|
With git, you can do practically anything offline, because everybody has their own repository. Making branches and merging between branches is really easy. Even if you don't have commit rights for a project, you can still have your own repository online, and publish "push requests" for your patches. Everybody who likes your patches can pull them into their project, including the official maintainers. It's trivial to fork a project, modify it, and still keep merging in the bugfixes from the HEAD branch. Git works for the linux kernel developers. That means it is really fast (it has to be), and scales to thousands of contributors. Git also uses less space (upto 30x less space for the Mozilla repository). Git is very flexible, very TIMTOWTDI (There is more than one way to do it). You can use whatever workflow you want, and git will support it. Finally, there's github, a great site for hosting your git repositories. Drawbacks of git:
|
||||||||||||||||||||
|
|
|
Other answers have done a good job of explaining the core features of Git (which are great). But there's also so many little ways that Git behaves better and helps keep my life more sane. Here are some of the little things:
|
||||||||||||||
|
|
|
Google Tech Talk: Linus Torvalds on git http://www.youtube.com/watch?v=4XpnKHJAok8 The Git Wiki's comparison page |
||||
|
|
|
Well, it's distributed. Benchmarks indicate that it's considerably faster (given its distributed nature, operations like diffs and logs are all local so of course it's blazingly faster in this case), and working folders are smaller (which still blows my mind). When you're working on subversion, or any other client/server revision control system, you essentially create working copies on your machine by checking-out revisions. This represents a snapshot in time of what the repository looks like. You update your working copy via updates, and you update the repository via commits. With a distributed version control, you don't have a snapshot, but rather the entire codebase. Wanna do a diff with a 3 month old version? No problem, the 3 month old version is still on your computer. This doesn't only mean things are way faster, but if you're disconnected from your central server, you can still do many of the operations you're used to. In other words, you don't just have a snapshot of a given revision, but the entire codebase. You'd think that Git would take up a bunch of space on your harddrive, but from a couple benchmarks I've seen, it actually takes less. Don't ask me how. I mean, it was built by Linus, he knows a thing or two about filesystems I guess. |
||||||
|
|
|
http://whygitisbetterthanx.com/#svn - The site outlines the various pros and cons of git vs another SCM. Briefly:
There are some disadvantages:
In the most simplistic usage, Subversion and Git are pretty much the same. There isn't much difference between:
and
Where Git really shines is branching and working with other people. |
||||
|
|
|
The main points I like about DVCS are those :
The main reason for a relatively big project is the improved communication created by the point 3. Others are nice bonuses. |
||
|
|
|
|
The funny thing is: I host projects in Subversion Repos, but access them via the Git Clone command. Please read Develop with Git on a Google Code Project
Using Git on a Svn Repository gives me benefits:
|
||
|
|
|
|
It's all about the ease of use/steps required to do something. If I'm developing a single project on my PC/laptop, git is better, because it is far easier to set up and use. You don't need a server, and you don't need to keep typing repository URL's in when you do merges. If it were just 2 people, I'd say git is also easier, because you can just push and pull from eachother. Once you get beyond that though, I'd go for subversion, because at that point you need to set up a 'dedicated' server or location. You can do this just as well with git as with SVN, but the benefits of git get outweighed by the need to do additional steps to synch with a central server. In SVN you just commit. In git you have to git commit, then git push. The additional step gets annoying simply because you end up doing it so much. SVN also has the benefit of better GUI tools, however the git ecosystem seems to be catching up quickly, so I wouldn't worry about this in the long term. |
||||
|
|
|
Subversion is still a much more used version control system, which means that it has better tool support. You'll find mature SVN plugins for almost any IDE, and there are good explorer extensions available (like TurtoiseSVN). Other than that, I'll have to agree with Michael: Git isn't better or worse than Subversion, it's different. |
||
|
|
|
|
git also makes branching and merging really easy. Subversion 1.5 just added merge tracking but git is still better. With git branching is very fast and cheap. It makes creating a branch for each new feature more feasible. Oh and git repos are very efficient with storage space as compared to Subversion. |
||
|
|
|
|
Easy Git has a nice page comparing actual usage of Git and SVN which will give you an idea of what things Git can do (or do more easily) compared to SVN. (Technically, this is based on Easy Git, which is a lightweight wrapper on top of Git.) |
||
|
|
|
|
One of the things about SubVersion that irks me is that it puts its own folder in each directory of a project, whereas git only puts one in the root directory. It's not that big of a deal, but little things like that add up. Of course, SubVersion has Tortoise, which is [usually] very nice. |
||||
|
|
|
Git and DVCS in general is great for developers doing a lot of coding independently of each other because everyone has their own branch. If you need a change from someone else, though, she has to commit to her local repo and then she must push that changeset to you or you must pull it from her. My own reasoning also makes me think DVCS makes things harder for QA and release management if you do things like centralized releases. Someone has to be responsible for doing that push/pull from everyone else's repository, resolving any conflicts that would have been resolved at initial commit time before, then doing the build, and then having all the other developers re-sync their repos. All of this can be addressed with human processes, of course; DVCS just broke something that was fixed by centralized version control in order to provide some new conveniences. |
||
|
|
|
Thanks to the fact it doesn't need to communicate with a central server constantly, pretty much every command runs in less than a second (obviously git push/pull/fetch are slower simply because they have to initalise SSH connections). Branching is far far easier (one simple command to branch, one simple command to merge) |
||
|
|
|
|
All the answers here are, as expected, programmer centric (not a bad thing!). What happens if you (and your company) want to use revision control outside of source code? There are plenty of documents which aren't source code which benefit from version control, and most programmers don't work in isolation - we work for companies as part of a team. Now with that in mind, compare ease of use, in both client tooling and training, between Subversion and git. I can't see a scenario where any distributed revision control system is going to be easier to use or explain to a non-programmer. I'd love to be proven wrong, because then I'd be able to evaluate git (or whatever) and actually have a hope of it being accepted by people who need version control who aren't programmers. Even then, if asked by management why we need to move from a centralised to distributed revision control system (and the all the issues that go with it), I'd be hard pressed to give an honest answer; because we don't need it, and I don't think most programmers or the companies they work for need it either. Disclaimer: I became interested in Subversion early on (around v0.29) so obviously I'm biased, but the companies I've worked for since that time are benefiting from my enthusiasm because I've encouraged and supported its use. I suspect this is how it happens with most software companies. With so many programmers jumping on the git bandwagon, I wonder how many companies are going to miss out on the benefits of using version control outside of source code? Even if you have separate systems for different teams, you're missing out on some of the benefits, such as (unified) issue tracking integration, whilst increasing maintenance, hardware and training requirements. |
|||
|
|
|
|
A few answers have alluded to these, but I want to make 2 points explicit: 1) The ability to do selective commits (eg git add --patch). If your working directory contains multiple changes that are not part of the same logical change, git makes it very easy to make a commit that includes only a portion of the changes. With subversion, it is difficult. 2) The ability to commit without making the change public. In subversion, any commit is immediately public, and thus irrevocable. This greatly limits the ability of the developer to "commit early, commit often". git is more than just a VCS; it's also a tool for developing patches. svn is merely a VCS. |
|||
|
|
|
|
I like git because it actually helps communication between developer to developer on a medium to large team. As a distributed version control system, through its' push/pull system it helps developers to create a source code eco-system which helps to manage large pool of developers working on a single project. For example say you trust 5 developers and only pull codes from their repository. Each of those developers has their own trust network from where they pull codes. Thus the development is based on that trust fabric of developers where code responsibility is shared among the development community. Of course there are other benefits which are mentioned in other answers here. |
||
|
|
|
|
Subversion is very easy to use. I have never found in the last years a problem or that something doesn't work as expected. Also there are many excellent GUI tools and the support for SVN integration is big. With Git you get a more flexible VCS. You can use it the same way like SVN with a remote repository where you commit all changes. But you can also use it mostly offline and only push the changes from time to time to the remote repository. But Git is more complex and has a steeper learning curve. I found myself in the first time committing to wrong branches, creating branches indirectly or get error messages with not much informations about the mistake and where I must search with Google to get better informations. Some easy things like substitution of markers ($Id$) doesn't work but GIT has a very flexible filtering and hook mechanism to merge own scripts and so you get all things you need and more but it needs more time and reading of the documentation ;) If you work mostly offline with your local repository you have no backup if something is lost on your local machine. With SVN you are mostly working with a remote repository which is also the same time your backup on another server... Git can work in the same way but this was not the main goal of Linus to have something like SVN2. It was designed for the Linux kernel developers and the needs of a distributed version control system. Is Git better then SVN? Developers which needs only some version history and a backup mechanism have a good and easy life with SVN. Developers working often with branches, testing more versions at the same time or working mostly offline can benefit from the features of Git. There are some very useful features like stashing not found with SVN which can make the life easier. But on the other side not all people will need all features. So I cannot see the dead of SVN. Git needs some better documentation and the error reporting must be more helpful. Also the existing useful GUIs are only rarely. This time I have only found 1 GUI for Linux with support of most Git features (git-cola). Eclipse integration is working but its not official released and there is no official update site (only some external update site with periodical builds from the trunk http://www.jgit.org/updates) So the most preferred way to use Git this days is the command line. |
|||
|
|
|
|
Eric Sink from SourceGear wrote series of articles on differences between distributed and non distributed version controls systems. He compares pros and cons of most popular version control systems. Very interesting reading. |
|||
|
|
|
|
Git lost. (And don't even start about manual pulls/pushes of "externals" in git). |
|||
|
|
