Tagged Questions
Shows changes between the working tree and the committed contents of a git repository, or between two commits or branches of the repository.
28
votes
7answers
4k views
git diff - handling long lines?
I'm running git-diff on a file, but the change is at the end of a long line.
If I use cursor keys to move right it loses colour coding and worse the lines don't line up, making it harder to track the ...
21
votes
5answers
7k views
git-diff to ignore ^M
In a project where some of the files contains ^M as newline separators. Diffing these files are apparently impossible, since git-diff sees it as the entire file is just a single line.
How does one ...
9
votes
2answers
186 views
How can I limit git-diff to one directory only, without its children?
I'm using git diff --name-status to track which files have been modified/added/removed/renamed/copied between two commits, and it works great.
Now suppose I move file file1 to newdir/file1, commit, ...
9
votes
4answers
1k views
Git: how to diff the same file between two different commits on the same branch?
On git, how could I compare the same file between two different commits (not contiguous) on the same branch (master for example)?
I'm searching for a Compare feature like the one in VSS or TFS, is it ...
7
votes
2answers
530 views
git diff with author filter
I have a series of commits by different authors and I would like to see a git dff output between 2 commits but only considering the commits by one of the authors, something like, something like ...
5
votes
2answers
131 views
Customizing headings in git diff
When viewing a diff using git diff, each change starts with line like:
@@ -28,41 +20,10 @@ namespace ConsoleApplication1
For C, the final part is quite descriptive – it shows for example the ...
4
votes
2answers
146 views
What do the Git “pairing broken” and “unknown” statuses mean, and when do they occur?
Some options in git diff, for instance --name-status, cause the output of a status letter next to a file name. They are:
A, C, D, M, R, T, U, X, B
… and they mean
Added (A), Copied (C), ...
4
votes
3answers
378 views
How to get diff working like git-diff?
I like the output formatting of git-diff. The color options and the +/- representation of changes between lines is significantly easier to read (IMHO) than the standard GNU diff.
I see that I can ...
4
votes
3answers
441 views
Git workflow for a single developer on a local repository
I'm trying to refine a personal git workflow to something a little easier to deal with.
Here's some background of how I'm using git for purposes of this post:
A single developer who is the only one ...
4
votes
4answers
165 views
What are the differences between these git diff commands?
What are the differences between the following git commands?
git diff HEAD
git diff HEAD^
git diff --cached or the synonym git diff --staged
git diff
3
votes
2answers
73 views
What is the reason for the /a /b prefixes of git diff
I've been using git for some years now and always wondered why git diff prefixes the names of modified files with a/ and b/. I expected to eventually stumble upon a use-case where it is useful, but ...
3
votes
4answers
140 views
In Git, how do I diff to the first commit of my branch?
I've made several commits to a local branch, but I'm not sure what the best way to diff what I currently have to my branch's starting state. I know I can do something like git diff HEAD HEAD~6 if ...
3
votes
1answer
248 views
I can't make git diff use opendiff
I want to use opendiff as default diff-tool for git diff. This used to work but for some reason stopped working.
I'm using a script:
echo opendiff $2 $5 > opendiff-git.sh
which is set in ...
3
votes
2answers
527 views
Make git highlight tab characters in a diff?
I'm trying to ensure that I don't commit code that uses tab characters for indentation. This is a soft constraint that I'm applying to my own commits (right now we don't have a standard for ...
3
votes
1answer
279 views
How do I use git diff -G?
I'm writing a little test suite that runs the tool to be tested over a bunch of input files. For each input file, a corresponding output file is being created by the tool (both are in XML). Input and ...
3
votes
1answer
160 views
How can I do case insensitive git diffing?
Is it possible to be a case insensitive git while doing git diff --color-words? Or do I need to use an external diff program while doing that?
3
votes
4answers
953 views
“git diff” does nothing
I presume this is a configuration error somewhere, but I can't figure out where. Regular git commands appear to work fine, but "git diff" does nothing. To be safe, I removed external diff tools from ...
2
votes
1answer
53 views
How to generate a git diff (patch) of a mode change to a binary file?
I've got a git repo that contains a few binary files. I've staged a chmod 755 to one of the binary files and I want to generate a diff of this mode change that can be applied on another machine with ...
2
votes
5answers
49 views
Is there a diff tool launcher for Git that lets you interactively select from a file listing?
When I use Git difftool it launches my diff program on each file in sequential fashion, where I have to close the tool and hit the Enter key between each one. Is there a way to have it launch a ...
2
votes
1answer
69 views
Gitk: Setting “Ignore space change” option to be true by default
Is this possible in any way? I have tried git config --global alias.diff 'diff -b -w' but unfortunately that was not the solution.
2
votes
3answers
172 views
Emacs Based Git Diff Tool?
Are there any emacs based visual diff tools avialable? If multiple tools are available, which is better, or more specifically which is easier to use?
How do you set up said diff tool from within git ...
2
votes
1answer
62 views
Can I make “git gui” pass, say, “--patience” to “git diff”?
I'm really just looking for a way to configure git gui to generate diffs as if by git diff --patience, but I strongly suspect that any mechanism which might allow me to do this would allow other ...
2
votes
2answers
62 views
Git: can we compare two staged-version of the same files?
Is it possible to staged twice the same file and compare (diff) the two staged version? Example with the file myclass.java:
I stage my file ==> git add myclass.java (staged file version 1)
I do some ...
2
votes
2answers
124 views
How can I get a side-by-side diff when I do “git diff”?
When I type "git diff" , I'd like to see a side-by-side diff, like with "diff -s" .. or like to display the diff in an interactive diff tool like "kdiff3" -- how can this be done?
2
votes
3answers
237 views
Git - easiest way to see diff with previous version if I have the sha
A colleague of mine checked in some changes to Git, and I want to see exactly what those changes were. In other words, the diff between his check-in and its parent.
What seemed logical to me was to ...
2
votes
2answers
365 views
git diff doesn't show enough
I want to see the difference between the master branch and my feature branch. I have many pulls from the master to my feature branch and want to see the changes that would be added if I merged my ...
2
votes
1answer
192 views
git: Why doesn't git diff show any differences?
If I run 'git status' on my repo it gives:
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# modified: myfile
However, if I do a 'git diff ...
2
votes
1answer
101 views
Git Diff - Indicate a line move
I'm developing a script to use with git diff to be able to 'filter out' lines that have simply moved in a file. Visual Studio 2008 has become a pain when working with Designer files. It sometimes ...
2
votes
4answers
422 views
Explore git-diff output in a GUI?
Is there program that allows output of a git-diff command to be explored in a GUI?
What i am looking for is something similar to the how SmartGit displays its view of the differences between the ...
2
votes
3answers
1k views
git diff - show me line ending changes?
For some reason my editor looks like it is occasionaly changing changing the line endings of my source files. When I do 'git diff', all I get is a mysterious empty - followed by a +, but no ...
2
votes
2answers
455 views
Using git diff in same file between first and last commit
I have a text file (.yml) that I enter some texts to my system use. But now we need to know what new lines at once. I thought to use git to solve our problem, but I cant find a clarified command to do ...
1
vote
3answers
37 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
3answers
131 views
Using git diff, how can I get added and modified lines numbers?
Assuming I have a text file
alex
bob
matrix
will be removed
git repo
and I have updated it to be
alex
new line here
another new line
bob
matrix
git
Here, I have added lines number (2,3) and ...
1
vote
2answers
120 views
git show commit in beyond compare
I would like to see a specific commit in Beyond Compare or any other separate diff tool while viewing it via git show. I tried looking at help of git show/difftool/config but couldn't find anything. ...
1
vote
1answer
59 views
why doen't conflict diffs load on Filemerge, when other diffs do?
I have GIT set up to load Diffs in filemerge, but when there are conflicts, it just prints the diff to terminal.
Is there a way around this, or a better app to handle conflicts?
1
vote
3answers
88 views
git diff: ignore renaming of variables
While doing some refactoring, I renamed a variable from oldName to newName. Is there a way to tell the git diff command to ignore differences where oldName is now newName? I want to do this to focus ...
1
vote
1answer
166 views
git line-endings issue with just one clone of a repo
Ok, I have a git repo. All clones running same-ish version of git (pretty much latest).
'origin' is on GitHub.com
clones on various CentOS servers, no problems with line-endings encountered
clone on ...
1
vote
2answers
191 views
using git to compare one file from two commits
I have a file that has broken somewhere down the line, and I have found the last point in which it was still fixed.
I would like to know how, using git, I can compare one file from two commits, or ...
1
vote
3answers
164 views
How can I get content of a file from git index?
I have a file which has been already added to my local repository. I've modified it in the working tree, so git-status shows me the file as modified. I would like to know what is the file content kept ...
1
vote
3answers
261 views
Vim: Delete Buffer When Quitting Split Window
I have this very useful function in my .vimrc:
function! MyGitDiff()
!git cat-file blob HEAD:% > temp/compare.tmp
diffthis
belowright vertical new
edit temp/compare.tmp
diffthis
...
0
votes
1answer
33 views
Removal of CR in Git repository not showing up in the git diff or git status
I fixed a file with CRLF issues be using the sed one liner:
sed -i 's/^M//' <filename>
However, this file is not showing up in the git status and the removal of the CR is not showing up in a ...
0
votes
1answer
43 views
Trying to perform a diff using netbeans and its Git repository
I have two different version of a website, an older version, and a newer version that is supposed to have some sort of virus on it (or malicious code of some kind). I need to perform a diff between ...
0
votes
1answer
27 views
Find files of commit A that have changed compared to commit B with git?
I am looking for something like "git diff --name-only B A", but limited to files contained in commit A. Or, in other words, I need a list of all files changed with commit A (excluding history) that ...
0
votes
1answer
22 views
0
votes
1answer
62 views
Config: Fetch git data then merge it with git mergetool
I've successfully set up Kaleidoscope as my default git difftool, and works like a charm. But when I make a fetch then git difftool, I can see what has changed, yet I cannot choose or merge what I ...
0
votes
2answers
147 views
How to make git-diff and git log ignore new and deleted files?
Sometimes there's a couple of changed files together with some new, deleted and/or renamed files. When doing git diff or git-log I'd like to omit them, so I can better spot the modifications.
...
0
votes
1answer
144 views
Making git diff (NOT difftool) and git log -p work with *.sql files and Windows PowerShell
I know how to configure an external tool to view differences with a call to git difftool. However, if I want to see an 'dump' of all changes for entire history of a file to my console window, I ...
0
votes
1answer
170 views
View diff of staged changes in git [closed]
Possible Duplicate:
How do I show the changes which have been staged?
Is there a simple way to view the diff of only the staged changes I have pending in git? I've staged several files but ...
0
votes
2answers
85 views
GIT: Changed File Names With Certain Extension
When I want to get a list of the files I have changed so for, I use this command:
git diff --name-only
But many times, I get many files that I don't care about right now. For example, if I am ...
0
votes
2answers
446 views
Git diff gone mad?
I'm trying to figure out what's going on with my local Git repo.
I edit a file.
Git reports everything has changed in the file (I only changed one line)
At first I think "must be a newline problem", ...