SyntaxFix
Write A Post
Hire A Developer
Questions
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: