git status

9.1. git status#

Displays information about:

  • How your current branch compares to its reference branch(es).

  • The status of the workspace:

    • What files have changed and are staged,

    • What files changed and are unstaged.

  • Commands you might want to run.

Note

git status can be particularly useful wenn running a rebase during which you have to step through all rebased commits.