How do I show uncommitted changes in Git?
I STFW\'ed, and these commands are not working:
teyan@TEYAN-THINK MINGW64 /d/nano/repos/PSTools/psservice (
You have already staged the changes (presumably by running git add), so in order to get their diff, you need to run:
git add
git diff --cached
(A plain git diff will only show unstaged changes.)
git diff
For example: