git status -s
Display a short summary of the working directory's status
This command shows the status of the working directory and staging area in a concise, one-line format.
It provides a brief overview of file changes (M
for modified, A
for added, ??
for untracked) by listing each file along with its status.
Variations include using -sb
to include branch information or omitting the -s
entirely for a full, detailed status output.
Related