Show the changes to files in a git repository. Lists changed, added and deleted files compared to the currently checked-out commit.
# To show changed files which are not yet added for commit:
git status
# To give output in short format:
git status -s
# To don't show untracked files in the output:
git status --untracked-files=no