You can see what changes are currently being implemented using git diff --cached .
With no arguments, git diff will show you undefined changes in the working directory; using git diff --cached , it will show you only the changes that were delivered but not yet committed.
source share