Is it possible to ask git diff to include untracked files in its diff output? Or is my best bet to git add the new files I've created and the existing files I've edited, and use
git diff --cached
?
|
|
|
With recent git versions you can "git add -N" the file (or "--intent-to-add"), which adds a zero-length blob to the index at that location. The upshot is that your "untracked" file now becomes a modification to add all the content to this zero-length file, and that shows up in the "git diff" output.
Sadly, as pointed out, you can't |
|||||||||||
|
|
For my interactive day-to-day gitting (where I diff the working tree against the HEAD all the time, and would like to have untracked files included in the diff), So here's my
Typing just Notes:
|
|||||
|
|
I believe you can diff against files in your index and untracked files by simply supplying the path to both files.
|
|||||
|