GIT: How do I show the changes which have been staged?

GIT - how to show the contents of files that have been changed.

Using the git cli to find what has been changed.

Run the following:
$ git diff --cached

or

Specify a file:
git diff --cached filename