lab 4 Checking Status
Goals
- Learn how to check the status of the repository
Check the status of the repository 01
Use the git status
command to check the current status of the repository.
Execute:
git status
You should see
Output:
$ git status # On branch master nothing to commit (working directory clean)
The status command reports that there is nothing to commit. This means that the repository has all the current state of the working directory. There are no outstanding changes to record.
We will use the git status
command to continue to monitor the state between the repository and the working directory.