It’s different from git status which just shows you the names of the unstaged files you have changed. If you add all your files to your staging index, and you run git diff, you won’t see your change anymore. Don’t worry, you can run git diff --staged ...
↧