Is it possible to ask git diff
to include untracked files in its diff output, or is my best bet to use git add
on the newly created files and the existing files I have edited, then use:
git diff --cached
?
Is it possible to ask git diff
to include untracked files in its diff output, or is my best bet to use git add
on the newly created files and the existing files I have edited, then use:
git diff --cached
?