diff --git a/pages/common/git-status.md b/pages/common/git-status.md index 4f76f32a1..a0ec0e008 100644 --- a/pages/common/git-status.md +++ b/pages/common/git-status.md @@ -1,6 +1,7 @@ # git status -> Show the index (changed files). +> Show the changes to files in a git repository. +> Lists changed, added and deleted files compared to the currently checked-out commit. > More information: . - Show changed files which are not yet added for commit: @@ -10,3 +11,7 @@ - Give output in short format: `git status -s` + +- Don't show untracked files in the output: + +`git status --untracked-files=no`