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 information to confirm this was the actual change.

How do I get git diff to show me what this change actually was?

link|improve this question
feedback

3 Answers

use "git diff -w" to review the diff without whitespace change such as \r, \t etc

also with "git log -p -w" or "git show -w"

link|improve this answer
Yes - but I want to see the whitespace change, and what whitespace was changed to what other whitespace. – Stonky Oct 14 '10 at 23:10
1  
use "git difftool" to review diff with default difftool which vimdiff; After launch vim, use command "set list" to trigger viewing of whitespace; Also "set listchars=" to specify the including of whitespace, use command "help listchars" to see more – Cotton Oct 15 '10 at 4:07
feedback

A graphical diff tool will show you the change better -- try git difftool.

Use meld, and set the preferences to show whitespace. (Edit -> Preferences -> Show Whitespace.)

Other graphical tools probably have similar options -- @Cotton's answer+comment tells you how to do this with vimdiff.

link|improve this answer
feedback

Very vague. But the best advice would be to use an editor that is aware of differing lineend characters/sequences. vi is a good choice. notepad is not.

link|improve this answer
Thanks, I'm using Vim, however somehow it's playing tricks. I'd like to know how to get git to tell me what the changes were. – Stonky Oct 13 '10 at 4:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.