1
vote
2answers
13 views

git: update a php-script but keep own changes

I'm tracking my changes on a PHP-software with git. I have only a master branch and about 10 commits, the first commit was the original version 1.0 of the software. Now I saw, that the owner of the ...
1
vote
0answers
25 views

svn merge --dry-run Show svn diff

I'm working with a codebase that has (historically) been merged by hand rather than via svn merge. I'm trying to change that by proving to everyone how useful merge is - but when I do a dry run, I ...
0
votes
1answer
28 views

SVN 1.7 reapply reverted changes

I have problem with applying svn patch. I'm using svn 1.7 with TortoiseSVN. Some changes were made in revision A. There were some following commits until revision B reverted changes done in revision ...
0
votes
1answer
44 views

Tool to compare and merge files in different folders

I am developing two Java based projects that are very similar which means that what i do to the first one i can use diff to... command in Netbeans to apply the changes to the second one. However there ...
5
votes
1answer
85 views

Can ediff merge simultaneously show the ancestor, A, B, and merge buffers?

I'm a die-hard emacs user, but so far have always used kdiff3 for 3-way merges with ancestor, e.g. when performing git merge or rebase. I really like the way that kdiff3 can not only simultaneously ...
1
vote
1answer
59 views

regex: ignore “!” to diff / merge two files with comments starting with “!”

I would like to merge - or at least diff - two Fortran namelist files while ignoring whitespaces. and lines starting with !. I have tried diff -w -u -I '!.*' FILE1 FILE2 diff -w -u -I '\!.*' FILE1 ...
3
votes
2answers
40 views

Files changed between commits but with limiting file list to older commit

Situation: I have an old commit that I need to merge selectively with the latest commit. Some files have no changes and other files have significant changes that I need to review and merge ...
0
votes
2answers
41 views

Merge/diff tool that can show authors (supports blame or annotate) in files under version control

When merging files it will be helpful (as for me) to show an author of each line. Is there any diff or merge tool supporting that?
5
votes
2answers
556 views

Programmatic XML Diff / Merge in C#

At this moment, I am managing a piece of software that has multiple XML configuration files. When a new version of software is released, sometimes the base config files change, we currently have the ...
8
votes
3answers
945 views

get the differences in 2 DataSets c#

I am writing a short algorithm which has to compare two DataSets, so that the differences between both can be further processed. I tryed accomplishing this goal by merging these two DataSets and get ...
1
vote
2answers
272 views

How to make git ignore certain file conflicts and differences?

We have an automatically generated javascript file which is tracked in our git repository. The problem is that it includes a (useless) timestamp in a comment, which often creates trivial merge ...
2
votes
1answer
256 views

How to force textual merging with p4merge?

I'm using Perforce and its default merge tool p4merge. On integration I have several conflicts in a vcproj I wish to resolve. But it seems p4merge tries to somehow interpret the file's contents and ...
1
vote
2answers
32 views

Merge in a DVCS

For one of my apps I was thinking about implementing branch/merging. I don't understand how to merge without conflicts in some scenarios. Lets take this for example. Root writes some code. A, B and C ...
3
votes
1answer
8k views

Using Visual Studio 2012's built-in merge tool with Git

So, I don't know if anyone's noticed but the new Merge Tool packaged with VS2012 is sick-o to the max. I've recently moved to Git for my source control and really want to be able to set up VS2012 as ...
5
votes
1answer
701 views

git merge using the vs2012 diff tool

Is it possible to use the diff tool in visual studio 2012 together with git? Using "devenv /diff fileA fileB" i can bring up a diff between two files, but how can i add a third (base file) as well, ...
0
votes
2answers
119 views

Merge different strings

I've some PHP functions that given two JSON files, merge them into one to meet certain specs. However I need to add a feature, using PHP, that merges content strings of both files. These strings may ...
0
votes
1answer
75 views

Git: Patching changes made in a unrelated repo

Let me explain the problem with a example: I was working in my old project repo OlDRepo/libs/graphics I made a number of changes in graphics and made many commits. Now, I started working with a new ...
1
vote
0answers
87 views

GIT: Find and merge common file differences between branches

I have two branches, one being the master and the other being a development branch. I would like to see the differences between the two branches, but namely only the files that they have in common ...
1
vote
1answer
956 views

how to svn diff between a working copy and an unrelated branch

Here is the scenario: User 1 create branches/X svn checkout branches/X to local machine modify file.txt commit changes Another user, User 2, create branches/Y svn checkout branches/Y to his ...
6
votes
2answers
160 views

In git, how do I increase the context for merges?

When I merge large changes, git often gets hopelessly confused because it's not using enough context lines. It gets mixed up between the similar-looking endings of two different subroutines that both ...
9
votes
1answer
2k views

Using VS2012 diff tool from console

Is it possible to use VS 2012 diff tool from console like below? compare.exe c:\file1 c:\file2 EDIT Also you can run diff tool from Command Window and it will run in the same instance of VS. ...
4
votes
4answers
324 views

Get git diff for any merged branch

For each defect in code I create separate branch. When defect is fixed I merge this branch in master, so I have history like illustrated below (we see two branches with fixes): defect1 fix ...
0
votes
2answers
423 views

Diff merge : view difference between two folders and ignore file version number

I need some help. I have to view difference between two folders, but I need to ignore the file version number (project version number) which is in the header of the file. Like that: @version Release: ...
1
vote
1answer
101 views

What is difference between svn Merge b1 b2 Or simple patching b2 with b1?

Problem: Here: b1 = svn branch 1 b2 = svn branch 2 I am not able to understand the difference in : If I merge a branch b1 with branch b2 If I create a patch by diffing b1 and b2 using tool like ...
0
votes
1answer
2k views

Perforce: How do I get a diff of all changed files between branches?

I have two branches mainline and rcat. I have been working on rcat for a while now (multiple CLNs/Submits) and would like to merge into mainline. However, before I merge I need to submit the diff for ...
1
vote
0answers
175 views

Is there a ruby gem that does diff between HTML documents?

Doing a diff of two different html documents turns out to be an entirely different problem than simply doing a diff of plain text. For example, if I do a naive LCS diff between: Google</p> ...
3
votes
2answers
100 views

Does a merge tool exist that compares functions instead of line numbers?

I'm using kdiff3 but as I've recently come across the issue where reorganizing my methods that have common functionality (all my gets together, all my posts together, validation, etc.) ends up ...
0
votes
1answer
327 views

Git merge - manual merge - forcing conflic having WHOLE old and new file version

How to force git merge to generate conflict on all file or all file that differ to generate conflict having whole old and whole new version, example of such file : ...
1
vote
5answers
141 views

Find functional changes between two revisions of a file (compile diff?)

I'm looking for a tool that checks whether two (C) source code files generate the same binary so that I can find actual functional changes between two files and ignore mere coding style changes. It ...
3
votes
2answers
400 views

Showing commits made directly to a branch, ignoring merges in Git

When using git, is there a way to show commits made to a branch, while ignoring all commits that were brought in by merging? I'm trying to review the code changes made on a branch while ignoring ...
5
votes
4answers
349 views

What is the best (word or character)-based diff algorithm out there?

So, I want to be able to find the diff between two strings on a per-word basis (maybe faster than per-character, though, if per-character is faster then I'd want to do it that way). Here is an ...
2
votes
2answers
790 views

Svn diff to output all lines from files

I've been searching for a while and still can't find a simple solution to this problem I have. I want to produce a diff between two revisions of a file but I want the output to show all lines of my ...
0
votes
1answer
2k views

Configuring a diff-tool for Git on Windows

Since git diff in powershell mostly results in a unreadable amount of whitespace or strange characters, I installed Perforce P4Merge, to handle merging and diff. However, I can't make git diff open ...
1
vote
1answer
67 views

What is the git command to diff against a remote which has not been merged yet?

What is the git option to diff against a remote which has not been merged yet? ie if you do a git fetch and want to see what difference will be applied what is the git option for that?
8
votes
1answer
995 views

Merge tool for c# code [closed]

Can anyone recommend a merge tool that's specifically designed for merging C# code? The features I'm after: Can identify code constructs (classes, methods, ...) Can detect reorders of those ...
1
vote
1answer
453 views

pl sql files compare in Diff tools

We are using pl sql developer and every developer is using his own beautifier. ie comma's at end of line for some and for some it shows at start of line. Now who ever checks in the file last, the ...
1
vote
1answer
211 views

Merge two texts in javascript

What's the best way to merge two texts in javascript, without any need for user interaction in conflicts, it should be completely silent. Is there a way to do this?
6
votes
2answers
817 views

git diff unique to merge commit

Say I have, A topic / \ D---E---F master I can easily get the diff of D-E by doing git diff D..E --name-status and same for E-F, and E-A. Commit F is a merge commit, and say it had a ...
0
votes
1answer
68 views

GUI for conflicts resolution

I have a patch and directory to be patched. I can apply the patch with patch -p0 --merge my.patch The conflicts are marked then properly (using "<<<<", "====" and so on). The question ...
0
votes
2answers
91 views

Diff, compare and merge files - general concepts

Consider the example below without any assumption about language or file types. I have: M_old : [A,B,C] M_new : [A,B,X] and now I would like to create: M_result : [A,B,C,X] which is basically ...
1
vote
1answer
363 views

Applying a diff-patch to a string/file

For an offline-capable smartphone app, I'm creating a one-way text sync for Xml files. I'd like my server to send the delta/difference (e.g. a GNU diff-patch) to the target device. This is the plan: ...
14
votes
7answers
1k views

Context-aware merge?

Is there any diff/merge tool for programming languages, that works in a syntax-aware way (like XML Diff Tool), doing more than compare line-by-line (and optionally ignoring whitespace). I'm ...
0
votes
1answer
420 views

What is the difference between 'diff3' and 'svn merge' commands?

Is there any difference between the algorithm of how diff3 utility and svn merge commands work? Does svn merge use the same principle or some variation of how diff3 works? For example, diff3 does not ...
1
vote
3answers
89 views

Can I generate a “merge tool viewable” diff output with git?

For small chunks of code, I can manage writing: git diff SOURCE_FILE but when it gets past a number of lines, it gets difficult to watch. Is there someway of generating two files, one being the ...
0
votes
1answer
482 views

Netbeans as Mercurial Merge Tool

the company I work for have started to use Mercurial as our version control software, with NetBeans becoming the editor of choice for most developers. Up until now we've been using WinMerge and ...
0
votes
1answer
50 views

Merge of key-value stores

Is there some merge strategy or program which is aware of key-value stores, in the sense that the sequence of the lines does not matter*? For a real example, jEdit does not keep the order of options, ...
3
votes
1answer
657 views

Merging PHP changes with diff/patch

I have three PHP files: 1.php - Version 1.0 of OSS software (vanilla) 1a.php - Version 1.0 of OSS software (with customisations) 2.php - Version 1.1 of OSS software (vanilla) I would like to use ...
5
votes
2answers
962 views

How to programmatically merge text files with potential conflicts (ala git or svn, etc)?

As part of a larger project, I want the ability to take two bodies of text and hand them to a merge algorithm which returns either an auto-merged result (in cases where the changes are not ...
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. ...
1
vote
0answers
372 views

How to get p4v -merge to diff multiple files

In this question: http://stackoverflow.com/questions/42980/how-to-use-p4merge-as-the-merge-diff-tool-for-mercurial, Adam Rosenfield suggested to use launchp4merge to diff multiple files in OSX such ...

1 2