tldr/pages/common/git-status.md

30 lines
651 B
Markdown
Raw Normal View History

2015-10-22 08:31:52 +01:00
# git status
2014-03-09 12:20:13 +00:00
2021-01-07 14:06:38 +00:00
> 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>.
2014-03-09 12:20:13 +00:00
- Show changed files which are not yet added for commit:
2014-03-09 12:20:13 +00:00
`git status`
- Give output in [s]hort format:
2014-03-09 12:20:13 +00:00
`git status --short`
- Show the [b]ranch and tracking info:
`git status --branch`
- Show output in [s]hort format along with [b]ranch 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`