Tagged Questions
The 3-way-merge tag has no wiki summary.
7
votes
3answers
2k 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?
6
votes
4answers
405 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
244 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.
...
3
votes
8answers
7k 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.
...
2
votes
3answers
104 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) ---------------+
/ | ...
2
votes
4answers
424 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 ...
2
votes
3answers
526 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 ...
2
votes
3answers
831 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:
...
1
vote
1answer
64 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 ...
1
vote
4answers
485 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 ...
0
votes
1answer
149 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 ...