Presented by Krishna Prasad

About Us

What is our aim

Git Status ( git status ) Command

This command displays the current / working tree repository status.

git statusshows 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 addand git commit.