This is a great question with some great answers. However none of them show a simple example where merging in git works better than svn.

On the chance this question will be closed as a dup, can someone please post a short answer that just shows

  1. A concrete merge scenario
  2. How it is difficult in svn?
  3. How the same merge is easier in git?

A few points:

  • No philosophy or deep explanations of what a DVCS is please. These are great, really, but I don't want their details to obfuscate the answer to this (IMHO) important
  • I don't care about "historic svn" at the moment. Please compare modern git (1.7.5) to modern svn (1.6.15).
  • No renames please - I know that git detects renames and moves, while svn doesn't. This is great, but I am looking for something deeper, and example that doesn't involve renames or moves.
  • No rebase or other 'advanced' git operation. Just show me the merge please.
link|improve this question

71% accept rate
This link summarizes why git's branching model is very easy to use. When I used svn a while back, I don't remember being able to do fast local branching. – Ravi May 30 '11 at 3:46
@suravi - I'm not talking about local branching at all, nor performance. I want to understand why/if there are less merge conflicts in git than svn. – ripper234 May 30 '11 at 3:48
You mean stackoverflow.com/questions/2475831/merging-hg-git-vs-svn didn't answer your current question? (or stackoverflow.com/q/459891/6309 ?) – VonC May 30 '11 at 4:04
@VonC - thanks. While most of the answers you linked to weren't what I'm looking for, this one seems to be a valid example: stackoverflow.com/questions/459891/… – ripper234 May 30 '11 at 4:17
show 7 more comments
feedback

3 Answers

From a practical perspective, merging has traditionally been "hard" because of what I call the "big bang merge" problem. Suppose a developer has been working away on some code for a while and hasn't committed their work yet (maybe the developer is accustomed to working in Subversion against trunk, and doesn't commit unfinished code). When the developer finally commits, there is going to be a lot of changes all rolled up into one commit. For the other developers who want to merge their work with this "big bang" commit, the VCS tool isn't going to have enough information about how the first developer got to the point they committed, so you just get "here's a giant conflict in this whole function, go fix it".

On the other hand, the usual style of working with Git and other DVCS that have cheap local branches, is to commit regularly. Once you've done one bit of work that pretty much makes sense, you commit it. It doesn't have to be perfect but it should be a coherent unit of work. When you come back to merge, you still have that history of smaller commits that shows how you got from the original state to the current state. When the DVCS goes to merge this with the work of others, it has a lot more information about what changes were made when, and you end up getting smaller and fewer commits.

The point is that you can still make merging a hard problem with Git by making a single big bang commit only after you've finished something. Git encourages you to make smaller commits (by making them as painless as possible), which makes future merging easier.

link|improve this answer
This is a great motivation, and I've heard these arguments before and believe they are correct. Have you encountered a concrete example that illustrates this? – ripper234 May 30 '11 at 4:20
1  
Perhaps it is true in Darcs, but it is not true in Git, because Git for merging considers in usual case only three versions: ours, theirs and ancestor (merge base). – Jakub NarÄ™bski May 30 '11 at 15:21
Just FYI - if you/someone distills this use case into a concrete example, I'll accept their answer, because I believe this is the quintessential example. – ripper234 May 31 '11 at 6:41
With Subversion, I use feature branches for what git has local branches. So many people say that you can't commit unfinished work in Subversion - but it's just not true. I can do the same thing with Subversion every day and it's not more expensive. I don't see any advantage here considering the merge. – Wolfgang Jul 27 '11 at 19:35
feedback

I don't have concrete examples, but any kind of repeated merge is difficult, in particular so called criss-cross merge.

   a
  / \
 b1  c1
 |\ /|
 | X |
 |/ \|
 b2  c2

merging b2 and c2

link|improve this answer
This seems concrete enough to me! It happens all the time in large teams with less rigorous workflows: everyone hacks away, and periodically pulls from the central repo or from another developer who coded the thing they need. – Jefromi May 30 '11 at 18:43
feedback

Keeping the answer short - In DVCS , since you have a local source control, if something get screwed up in the merge process (which will probably happen in large merges), you can always rollback to a previous local version which has the changes you've made before merging, and then try again.

So basically you can do merge without the fear that your local changes might get damaged during the process.

link|improve this answer
Doesn't really answer the question. What's different in a DVCS from SVN in your example isn't obvious. – jv42 May 31 '11 at 13:11
feedback

Your Answer

 
or
required, but never shown

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