Sodamhan.com

TL;DR

git status

Show the changes to files in a Git repository. Lists changed, added and deleted files compared to the currently checked-out commit. More information: https://git-scm.com/docs/git-status.

  • Show changed files which are not yet added for commit:

git status

  • Give output in short format:

git status --short

  • Show verbose information on changes in both the staging area and working directory:

git status --verbose --verbose

  • Show the branch and tracking info:

git status --branch

  • Show output in short format along with branch info:

git status --short --branch

  • Show the number of entries currently stashed away:

git status --show-stash

  • Don’t show untracked files in the output:

git status --untracked-files=no

This document was created using the contents of the tldr project.