Tagged Questions
0
votes
1answer
19 views
Git undo changes to files which match regex in particular changeset
Say I have a bunch of files which were modified by changeset X. This changeset is currently HEAD. I want to separate all changes to files that match regex '*Test.java' into another changeset. If I do:
...
1
vote
2answers
72 views
Where can I find the patience diff implemented?
It is well-answered on this site that Bram Cohen's patience diff is found in bazaar as the default diff and as an option with git diff, but I am finding it difficult to source an independent ...
0
votes
2answers
40 views
Can I commit one single SVN diff file instead of committing 10 individual files in one go?
I have a list of files that I work on in my source tree in SVN. I might change some other files for my local use and I do not want to commit them. Recently working late by mistake I committed some ...
0
votes
2answers
37 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?
0
votes
2answers
125 views
Open Source Java Based Source Code Viewer
I am searching for a Java-based, open source diff viewer like
http://www.redmine.org/projects/redmine/repository/annotate/branches/0.7-stable/config/database.yml.example
Could you recommend (if any) ...
0
votes
0answers
20 views
How to get current version number from Vault in BeyondCompare 3
Does anyone know a way to get BeyondCompare 3 to show the version number of the source file in Vault I'm diffing against? Ideally I'd like to have this number in the .HTML file that it saves, but ...
0
votes
0answers
27 views
diffing, patching, visualizing diffs, and revision control of XML
XML is a poor candidate for the usual line-by-line diff, especially when prettyprinted. Simply adding a tag at some level may lead to a simple diff detecting changes on all its children lines.
...
2
votes
1answer
39 views
Looking for a way to calculate the number of lines that have NOT changed between two commits
I'm working on a project that's under an old copyright, and I'm trying to make a good case to drop the copyright, because the project has significantly changed over the years.
(Don't worry, not ...
0
votes
0answers
34 views
Free utility to do diffs over previous versions of files in Win 7?
The "Previous Versions" facility of Win 7 is almost like having a light-weight source control system running in your file system. All it needs is to be able to Diff over different versions.
Here is a ...
1
vote
0answers
165 views
side-by-side diff viewer for version history? [closed]
I am looking for a side-by-side diff viewer, so that I could easily select two commits from a version history, and have a two-column view, showing the older and newer file side by side, with nice ...
2
votes
2answers
61 views
Differences for a certain folder between git branches
As in the title, I want to have a diff file for a certain folder between the master branch and a branch I created.
2
votes
1answer
197 views
Python: How to create diff/patch files between 2 revisions for a single URL?
I would like to create a diff (patch) file between two revisions for a single SVN URL, including lines of unified context.
Basically I need to provide a Python method to achieve the following:
URL ...
4
votes
4answers
318 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 ...
1
vote
1answer
72 views
ignore certain *lines* when merging files
I have a repository with two branches, A and B.
They are meant to be the same code, but aimed at different versions of the libraries they depend on.
So A/file1.js might have a snippet in it like ...
4
votes
3answers
136 views
How revision control system restores revision?
My question is more general than declared in title.
I know that source version control stores information only about differences.
As I understand so does Wikipedia, and so does github.
But they all ...
0
votes
1answer
647 views
Apply a diff from one branch as a patch to another in Visual Studio TFS
We have a project in which we've been doing some work in a Branch for version 6.1. One of the changes made in the 6.1 branch (changeset 1800) was a bugfix, and someone decided it's urgent enough to ...
0
votes
2answers
65 views
Merge two modified versions of an original string
This is related to version control, in a parallel modification situation where we do not know the exact timing of changes, so we assume that we receive two modified versions of a file at the same ...
1
vote
1answer
100 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 ...
2
votes
2answers
223 views
Mercurial diff not working after move/rename
After moving a file into another directory I cannot display the differences between two revisions any more. E.g.:
hg init
touch a
hg add a
hg ci -m "Added a"
echo "Bli" >> a
hg ci -m "Bli"
...
3
votes
2answers
840 views
Github commit, diff does not show changes
I recently made a commit to a repo on github and now when I want to see the differences, for one of the files all I get is:
1273 additions, 678 deletions not shown
What is the cause of this? How can ...
0
votes
1answer
1k views
Why doesn't svn merge --ignore-ancestry work twice in this scenario, when svn diff+patch does?
I'm trying to replace my svn merging workflow — which is usually svn diff, sometimes some manual editing of the patch, and then patch — with actual svn merge. But I'm seeing some unexpected behavior, ...
0
votes
1answer
74 views
How to get the cvs change list for a new file
As part of my work I've been asked to log the cvs commands for creating the changelists for files I've updated as follows:
cvs diff -r 1.172 -r 1.173 ./somefile.php
But if the file is newly created ...
0
votes
3answers
133 views
SVN: Get diff for files that do not exist in those revisions (added or deleted)
I have a small problem with svn diff. I really have to use this line:
svn diff -r X:Y path/to/file.ext
This works perfect for cases file.ext exists in both revisions.
The problem is when it does ...
1
vote
0answers
172 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
99 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 ...
1
vote
2answers
49 views
Browsing two different revisions of the same repository
Say that I have a rather large repository, and I want to compare two specific revisions. But don't just want to just see the diff, I want to be able to browse through the code, jump between files etc.
...
0
votes
1answer
326 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
1answer
98 views
Diffing a file against last Mercurial changeset, should it be different?
I'm seeing something I don't expect in my Mercurial repo. A change that has been made in a branch is showing up in default. There is no changeset in the log, merge or otherwise, accounting for the ...
6
votes
1answer
67 views
How do I find the best matching revision in a version control system?
I downloaded a single file from an subversion repository (subversion) long time ago. So this is not a checkout from that repository. I altered this file, but I do not remember the revision when I ...
1
vote
3answers
58 views
Verify patch consists of only moves
I have been reorganizing some code and would like to use a program to verify that the diff consists of only matching pairs of additions and deletions. I am using git as source control so hopefully ...
1
vote
1answer
447 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 ...
3
votes
4answers
155 views
Go's gofmt and diff/VCS issues?
I've got a question about Go's gofmt tool, which formats automatically the output of programs according to the official Go specs (for example you cannot argue about where brackets should go in Go, ...
0
votes
2answers
359 views
Print last 10/20/… svn log messages with diffs
I am using SVN for a project. with svn log -l 10, I can get the last 10 commits to this folder, with the revision id, log message, etc.. Is there any SVN command that lets me print out on the command ...
1
vote
1answer
195 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 ...
0
votes
1answer
122 views
How to export or diff files which are commited by a specific user with svn?
I need to check differences of the files which I committed before.
But if I try to diff or export files by using revision range option,
the files which others committed also shown in the result.
I ...
1
vote
2answers
111 views
Diffing two versions in Hg
I am trying to view the differences between two versions of a project. The way I initially thought to do it:
Create new repository
Commit first version to repository
Overwrite first version with ...
23
votes
1answer
2k views
Download Github pull request as unified diff
How can I download the changes contained in a Github pull request as a unified diff?
2
votes
1answer
112 views
'git diff' inconsistent between CLI and other clients
I'm trying to get a list of changed/added/deleted/etc. files for a commit in my Git repository. When I run the following in the shell, this is the output:
Indragie$ /usr/bin/git diff --name-status ...
0
votes
2answers
69 views
Is bidimensional comparison a SCM feature?
We have uni- and bi-dimensional diff tools. But we have those two flavors also for VCSes?
Is it correct to say that SVN is unidimensional and modern SCMs are bidimensional?
2
votes
1answer
42 views
Creating a diff which ignores differences between sentinel lines
I'm looking for a possible way of getting around some merge conflicts when working through different branches.
It's not unlikely that some information in some files (especially version numbers) are ...
5
votes
2answers
209 views
What is the most efficient way of storing multiple revisions of binary files in PostgreSQL?
I'm looking for a limited form of version control in the database here:
Size is of greatest importance: many revisions of the same file should occupy the smallest space possible (I'm not looking for ...
2
votes
1answer
109 views
Mercurial: Is there a way to make a diff compared to local repository, not remote?
I've comitted several changes in my mercurial repository. And now I want to see the difference between my local copy and the original remote repository. So it would be same if I collected diffs of all ...
2
votes
2answers
72 views
Can 2 sequential diffs be patched to output a 3rd diff that reflects all the changes combined from former 2 diffs?
Given diff(a,b) & diff(b,c)
Is there a way to find diff(a,c) without knowledge of a or b or c ?
Note : I'm using diff utility in GNU.
Is there any existing solution for this ?
Thanks in ...
1
vote
4answers
565 views
Diff file viewer?
I'm looking for a tool that displays diff files (generated from mercurial, in my case) in some convinient manner. For example, the way bugzilla displays diff patches. Just to be clear, I'm not looking ...
2
votes
3answers
73 views
Encapsulating “proposed” code changes in a file for use with windiff (for code review purposes) [closed]
I've seen this being used within big software companies where they had their own system to implement this. The developer who wanted to make a checkin would first create a self-extracting "pack" that ...
1
vote
2answers
934 views
Clearcase snapshot view path's not resolving when comparing
We use Clearcase at my work and I have several snapshot views setup (on Windows XP). The views themselves seem to work great, however whenever I try to compare any versions of any elements from my ...
3
votes
1answer
1k views
How to configure highlighting in Emacs diff mode?
I use mercurial.el mode with Emacs. When I run vc-diff, I can see the diff, but, unlike the source code, it is not nicely highlighted:
Reading such diffs is difficult. How do I configure Emacs,
...
4
votes
7answers
153 views
Program development
I am writing a C program. What I have seen from my earlier experiences is that I make some changes on a correct version of my program, and after that change, the program is computing incorrectly.
...
3
votes
3answers
2k views
Getting vc-diff to use ediff in Emacs 23.2
Had this working well in Emacs 23.1.x but it appears to have broke in the move to Emacs 23.2
I want to use ediff when comparing working copy of a file with SVN HEAD.
Normally I press C-x v = and ...
2
votes
1answer
384 views
How can I generate offline diff output between two views?
I am working on analyzing different files between two views in Clearcase. I need to generate output so that I can do this task without an internet connection. What I would like is to run a command ...

