Top "Git-diff" questions

Shows changes between the working tree and the committed contents of a git repository, or between two commits or branches of the repository.

Show diff between commits

I am using Git on Ubuntu 10.04 (Lucid Lynx). I have made some commits to my master. However, I want to …

git git-diff
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 newline git-diff
Show git diff on file in staging area

Is there a way I can see the changes that were made to a file after I have done git …

git git-diff git-stage
How do you take a git diff file, and apply it to a local branch that is a copy of the same repository?

I have a .diff file created by a coworker, and would like to apply the changes listed in that diff …

git diff git-diff
git: diff between file in local repo and origin

I want to find the differences between a file I have in my local repo vs what is in the …

git git-diff
How to show uncommitted changes in Git and some Git diffs in detail

How do I show uncommitted changes in Git? I STFW'ed, and these commands are not working: teyan@TEYAN-THINK MINGW64 /d/…

git git-diff
Git diff between current branch and master but not including unmerged master commits

I want a diff of all changes in a branch that is not merged to master yet. I tried: git …

git version-control merge diff git-diff
git diff file against its last change

Is it possible to get git to produce a diff between a specific file as it exists now, and as …

git git-diff
How to view file history in Git?

With Subversion I could use TortoiseSVN to view the history/log of a file. How can I do this with …

git timeline git-diff git-log revision-history
Create patch or diff file from git repository and apply it to another different git repository

I work on WordPress based project and I want to patch my project at each new release version of WP. …

git diff patch git-diff git-apply