2015-10-22 08:31:52 +01:00
|
|
|
# git status
|
2014-03-09 12:20:13 +00:00
|
|
|
|
2019-11-26 19:12:12 +00:00
|
|
|
> Show the changes to files in a git repository.
|
|
|
|
> Lists changed, added and deleted files compared to the currently checked-out commit.
|
2019-06-03 01:06:36 +01:00
|
|
|
> More information: <https://git-scm.com/docs/git-status>.
|
2014-03-09 12:20:13 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Show changed files which are not yet added for commit:
|
2014-03-09 12:20:13 +00:00
|
|
|
|
|
|
|
`git status`
|
|
|
|
|
2020-01-23 13:58:27 +00:00
|
|
|
- Give output in [s]hort format:
|
2014-03-09 12:20:13 +00:00
|
|
|
|
2015-10-22 08:31:52 +01:00
|
|
|
`git status -s`
|
2019-11-26 19:12:12 +00:00
|
|
|
|
|
|
|
- Don't show untracked files in the output:
|
|
|
|
|
|
|
|
`git status --untracked-files=no`
|
2020-01-23 13:58:27 +00:00
|
|
|
|
|
|
|
- Show output in [s]hort format along with [b]ranch info:
|
|
|
|
|
|
|
|
`git status -sb`
|