Git Status ( git status
) Command
This command displays the current / working tree repository status.
git status
shows to the users which of the changes have been staged and which have not been staged. It even displays the files that are not been tracked by Git.
The simple usage of the command is:
git status
The command simply displays which files are stagged or unstaged.
The comnand works in combination with git add
and git commit
.