Show differences for staged files

suggest change
git diff --staged

This will show the changes between the previous commit and the currently staged files.

NOTE: You can also use the following commands to accomplish the same thing:

git diff --cached

Which is just a synonym for --staged or

git status -v

Which will trigger the verbose settings of the status command.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents