Forrest logo
back to context overview

git-status

List of commands for git-status:

  • git-status:tldr:20e69 git-status: Show output in [s]hort format along with [b]ranch info.
    $ git status -sb
    try on your machine
    explain this command
  • git-status:tldr:6ca42 git-status: Show changed files which are not yet added for commit.
    $ git status
    try on your machine
    explain this command
  • git-status:tldr:c2c66 git-status: Don't show untracked files in the output.
    $ git status --untracked-files=no
    try on your machine
    explain this command
  • git-status:tldr:ccbb7 git-status: Give output in [s]hort format.
    $ git status -s
    try on your machine
    explain this command
back to context overview