The git status lists which files are staged, unstaged, and untracked. Outputs in the short-format
git status -s  /  git status --short
Outputs in an easy-to-parse format for scripts
git status --porcelain
Outputs in the long-format (default)
git status --long
Outputs on one line
git status -z
by Valeri Tandilashvili
4 years ago
Git
1
Pro tip: use ```triple backticks around text``` to write in code fences