vote up 5 vote down star
3

I am starting a new distributed project where some of the developers will not be in the same country... What should I use: Git or SVN?

Why?

PS. It is a smart client application running on windows and will be developed using Visual Studio

[UPDATE] And does it work on MacOS (Not required but interesting to know)?

flag

1  
Why do you care if it works on MacOS? There no VisualStudio there anyway – Andre Bossard Oct 2 '08 at 12:55

19 Answers

vote up 9 vote down check

Why is git better than Subversion?

link|flag
Sorry, I did not see this one! tnx – rudigrobler Oct 2 '08 at 10:13
vote up 14 vote down

SVN is one repo and lots of clients. GIT is a repo with lots of client repos, each with a user. It's decentralised to a point where people can track their own edits locally without having to push things to an external server.

SVN is designed to be more central where GIT is based on each user having their own GIT repo and those repos push changes back up into a central one. For that reason, GIT gives individuals better local version control.

The problem you'll face is the Windows-aimed GIT client market is still pretty small. Extremely small, in fact. GIT is only currently great on POSIX based systems (Unix, BSD, Linux, Solaris and their derivatives). There is a little gui that ships with GIT that works under a POSIX layer, but it's hardly as intuitive or powerful as TortoiseSVN.

If you're looking on getting out of SVN, you might want to evaluate Bazaar for a bit. It's one of the next generation of version control systems that have this distributed element. It isn't POSIX dependant like git so there are native Windows builds and it has some powerful open source brands backing it.

But you might not even need these sorts of features yet. Have a look at the features, advantages and disadvantages of the distributed VCSes. If you need more than SVN offers, consider one. If you don't, you might want to stick with SVN's (currently) superior desktop integration.

link|flag
vote up 9 vote down

I have never understand this concept of "git not being good on Windows"; I develop exclusively under Windows and I have never had any problems with git.

I would definitely recommend git over subversion; its simply so much more versatile and allows "offline development" in a way subversion never really could. Its available on almost every platform imaginable and has more features than you'll probably ever use.

link|flag
I, on the other hand, had quite some problems with git on windows, it did really strange things to my repo. And I was using the most recent version in cygwin (it was something like a month ago). – Roman Plášil Jun 13 at 8:32
vote up 4 vote down

Not really answering your question but if you want the benefits of Distributed Revision Control - it sounds like you do - and you're using Windows I think you'd be better off using Mercurial rather that Git as Mercurial has much better Windows support. Mercurial does have a Mac port too.

link|flag
vote up 3 vote down

I would opt for SVN since it is more widely spread and better known.

I guess, Git would be better for Linux user.

link|flag
vote up 3 vote down

I would set up a Subversion repository. By doing it this way, individual developers can choose whether to use Subversion clients or Git clients (with git-svn). Using git-svn doesn't give you all the benefits of a full Git solution, but it does give individual developers a great deal of control over their own workflow.

I believe it will be a relatively short time before Git works just as well on Windows as it does on Unix and Mac OS X (since you asked).

Subversion has excellent tools for Windows, such as TortoiseSVN for Explorer integration and AnkhSVN for Visual Studio integration.

link|flag
vote up 2 vote down

Git is not natively supported under Windows, just yet. It is optimized for Posix systems. However running Cygwin or MinGW lets you run Git successful.

Nowadays I prefer Git over SVN, but it takes a while to get over the threshold if you come from CVS, SVN land.

link|flag
Define 'natively'. msysgit works just fine – Milan Babuškov Oct 6 '08 at 7:26
vote up 2 vote down

There is an interesting Video on YouTube about this. Its from Linus Torwalds himself: Goolge Tech Talk: Linus Torvalds on git

link|flag
vote up 2 vote down

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

Although Google Code natively speaks Subversion, you can easily use Git during development. Searching for "git svn" suggests this practice is widespread, and we too encourage you to experiment with it.

Using Git on a Svn Repository gives me benefits:

  1. I can work distributed on several machines, commiting and pulling from and to them
  2. I have a central backup/public svn repository for others to check out
  3. And they are free to use Git for their own
link|flag
vote up 1 vote down

I would probably choose Git because I feel it's much more powerful than SVN. There are cheap Code Hosting services available which work just great for me - you don't have to do backups or any maintenance work - GitHub is the most obvious candidate.

That said, I don't know anything regarding the integration of Visual Studio and the different SCM systems. I imagine the integration with SVN to notably better.

link|flag
vote up 1 vote down

SVN seems like a good choice under Windows, as pointed by other people.

If some of your developper wants to try GIT, it may always use GIT-SVN where the SVN repository is recreated in a GIT repository. Then he should be able to work locally with GIT and then use SVN to publish its changes to the main repository.

link|flag
vote up 1 vote down

Definitely svn, since Windows is—at best—a second-class citizen in the world of git (see http://en.wikipedia.org/wiki/Git_(software)#Portability for more details).

UPDATE: Sorry for the broken link, but I've given up trying to get SO to work with URIs that contain parentheses. [link fixed now. -ed]

link|flag
FYI: enclose the URL in angle brackets, or replace parentheses with %28 and %29. – PhiLho Oct 2 '08 at 10:35
Will the URL-encoding work for the []() syntax? – Hank Gay Oct 2 '08 at 11:44
vote up 1 vote down

May I expand on the question and ask if Git work well on MacOS?

Reply to Comments: Thanks for the news, I'd been looking forward to trying it out. I'll install it at home on my Mac.

link|flag
Yes, it works beautifully. I installed it through MacPorts and use it daily. – Greg Hewgill Oct 2 '08 at 9:57
It does. It's great on any POSIX-based system (Unix, Linux, Solaris, BSD, etc). It's really just Windows where the problem lies. – Oli Oct 2 '08 at 9:58
and the git-gui and gitk probably work the same under OS-X as under Linux and Windows. Contrary to tortoiseSVN, which AFAIK is windows-only? – David Schmitt Oct 2 '08 at 10:28
vote up 1 vote down

If your team is already familiar with version and source control softwares like cvs or svn, then, for a simple and small project (such as you claim it is), I would recommend you stick to SVN. I am really comfortable with svn, but for the current e-commerce project I am doing on django, I decided to work on git (I am using git in svn-mode, that is, with a centralised repo that I push to and pull from in order to collaborate with at least one other developer). The other developer is comfortable with SVN, and while others' experiences may differ, both of us are having a really bad time embracing git for this small project. (We are both hardcore Linux users, if it matters at all.)

Your mileage may vary, of course.

link|flag
vote up 1 vote down

The main point is, that Git is a distributed VCS and Subversion a centralized one. Distributed VCSs are a little bit more difficult to understand, but have many advantages. If you don't need this advantages, Subversion may the better choice.

Another question is tool-support. Which VCS is better supported by the tools you plan to use?

And Git works on Windows at the moment only via Cygwin or MSYS. Subversion supported Windows from the beginning. As the git-solutions for windows may work for you, there may be problems, as the most developers of Git work with Linux and didn't have portability in the mind from the beginning. At the moment I would prefer Subversion for development under Windows. In a few years this may be irrelevant.

link|flag
I am optimistic that the horizon of irrelevancy will be much shorter than a few years. – Greg Hewgill Oct 2 '08 at 9:57
Yes, possibly it will only one year. Git has a dynamic development-community. But subversion has too. In a year or two you will have to look at both again to answer this question. – Mnementh Oct 2 '08 at 11:28
vote up 1 vote down

2 key advantages of SVN that are rarely cited:

  1. Large file support. In addition to code, I use SVN to manage my home directory. SVN is the only VCS (distributed or not) that doesn't choke on my TrueCrypt files (please correct me if there's another VCS that handles 500MB+ files effectively). This is because diff comparisons are streamed (this is a very essential point). Rsync is unacceptable because it's not 2-way.

  2. Partial repository (subdir) checkout/checkin. Mercurial and bzr don't support this, and git's support is limited. This is bad in a team environment, but invaluable if I want to check something out on another computer from my home dir.

Just my experiences.

link|flag
vote up 0 vote down

have you tried Bzr?

It's pretty good, connonical (the people who make Ubuntu) made it because they didn't like anything else on the market...

link|flag
vote up 0 vote down

You have to go with a DVCS, it is like a quantum leap in source management. Personally I use Monotone and its sped up development time no end. We are using it for Windows, Linux and Mac and it has been very stable. I even have buildbot doing nightly builds of the project on each of the platforms.

DVCS while being distributed usually means you will create a central server just for people to push changes to and from.

link|flag
vote up 0 vote down

I agree with Dave Webb. If you are working on Windows, then you should be considering Mercurial; not Git. There is even a shell plugin - TortoiseHg - available

link|flag

Your Answer

Get an OpenID
or

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