mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 21:02:08 +02:00
410 B
410 B
git status
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.
- Show changed files which are not yet added for commit:
git status
- Give output in short format:
git status -s
- Don't show untracked files in the output:
git status --untracked-files=no