vote up 2 vote down star
1

So I've been working on a wiki type site. What I'm trying to decide on is what the best algorithm for merging an article that is simultaneously being edited by two users.

So far I'm considering using Wikipedia's method of merging the documents if two unrelated areas are edited, but throwing away the older change if two commits conflict.

My question is as follows: If I have the original article, and two changes to it, what are the best algorithms to merge them and then deal with conflicts as they arise?

flag

3 Answers

vote up 3 vote down check

Bill Ritcher's excellent paper "A Trustworthy 3-Way Merge" talks about some of the common gotchas with three way merging and clever solutions to them that commercial SCM packages have used.

The 3-way merge will automatically apply all the changes (which are not overlapping) from each version. The trick is to automatically handle as many almost overlapping regions as possible.

link|flag
Cool paper, thanks for the link! – icco Jul 30 at 19:17
vote up 0 vote down

Rather than implement what is a complex algorithm yourself, why not use a third-party tool (such as SourceGear's DiffMerge which is free). Most of them have command line versions that you could shell out to, to perform the merge.

link|flag
Mainly because I'm in a situation where I don't know what OS I'll be running on or software will be on the system. If you know of any foss php versions, I'd be willing to look at those. – icco Jul 30 at 0:18
vote up 1 vote down

Frankly, I'd rely on diff3. It's on pretty much every Unix distro, and you can always build and bundle an .EXE for Windows to ensure it is there for your purposes.

link|flag

Your Answer

Get an OpenID
or

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