A three-way merge is a merge between a base version of a file and two diverged versions. Three-way merges are the corner-stone of automatic merges in modern version control systems.
0
votes
1answer
65 views
RCS on Windows - rcsmerge always fails
I'm using GNU RCS version 5.7 for Windows from the official Purdue RCS homepage. If I use the rcsmerge(1) command to merge changes from different branches, I get an error:
diff3.exe: subsidiary ...
2
votes
0answers
422 views
Controlling manual alignment in 'Beyond Compare's 3-way merge
When doing a 3-way merge in 'Beyond Compare', we can get the following misalignment due to code similarity (The X's are the deleted code segments, and only two files are shown):
/* ...
8
votes
2answers
499 views
Why are Mercurial backouts in one branch affecting other branches?
This is a difficult situation to explain, so bear with me. I have a Mercurial repository with 2 main branches, default and dev.
Work is usually done in a named branch off of dev (a feature branch). ...
4
votes
3answers
393 views
How do I specify a merge-base to use in a 'hg merge'
I'm trying to do a complicated merge in a complicated hg repository. I'm not happy with the "newest shared ancestor" that Mercurial chooses to use as the "base" to perform the merge.
I'd like to ...
1
vote
1answer
200 views
Anyone tried DiffMerge as the default 3-way merge tool with Evolphin Zoom Version Control Client?
So far we have been using the MacOS XCode FileMerge/OpenDiff tool as our default 3-way merge tool when resolving conflicts in text files with Evolphin Zoom. Has anyone tried using DiffMerge or other ...
2
votes
3answers
156 views
Why does a merge need you to consider the common ancestor?
I'm learning Git, and am finding the tutorial on this site very useful. On that page, concerning merging, it includes:
+---------- (D) ---------------+
/ | ...
1
vote
4answers
2k views
Tool for 3-Way Binary (Hex) File Comparison?
I have a set of binary configuration files with three versions each -- an original, and two differently-modified versions of each file. I need to be able to see the differences between the two ...
16
votes
4answers
2k views
Why is a 3-way merge advantageous over a 2-way merge?
Wikipedia says a 3-way merge is less error-prone than a 2-way merge, and often times doesn't need user intervention. Why is this the case?
An example where a 3-way merge succeeds and a 2-way merge ...
4
votes
5answers
484 views
Best practice tools and techniques for merging a derived code snapshot with updated upstream code?
The situation is as follows: it is necessary to merge in changes from an upstream code base (from V1, to V2), into a third code base S1 that is derived/branched from V1, to produce a new code base S2.
...
0
votes
1answer
253 views
Combining 2 patch files that patch a number of files in a directory + resolving conflicts
I have a dir with thousands of files and 2 patch files that apply to the same dir. Each patch file patches 20-30 files in dir or it's subdirs.
If I apply either patch to the common ancestor dir, it ...
4
votes
4answers
771 views
Three-way-merge - different philosophies?
I've been a user of UltraCompare Pro since it first came out, and I think it's a very full-featured compare and merge tool. However, since I have been looking more closely into DVCS, I found that it ...
5
votes
3answers
1k views
3-way merge in JavaScript or PHP
Does anyone know of an Open Source three-way merge implementation in JavaScript or PHP? I want to merge plain text files without the need to rely on any server side binaries.
I found a few solutions ...
8
votes
5answers
3k views
How can I use Beyond Compare 3 as the diff3-cmd for svn?
I saw this posting which explained how to get BC3 working as the diff tool for Subversion... but what about using Beyond Compare 3 to do 3-way merge/compares?
2
votes
3answers
1k views
non-graphical 3-way merge tool
I currently use RCS' merge command to do 3-way merges, but one thing has always annoyed me about it. If I use the -A option, the same change made in both files shows up as a conflict:
...
7
votes
8answers
19k views
Subversion: How to merge only specific revisions into trunk when multiple consecutive changes are made in a branch?
I have been using TortoiseSVN, svn, and subclipse and I think I understand the basics, but there's one thing that's been bugging me for a while: Merging introduces unwanted code. Here's the steps.
...