目的
学习如何检查仓库的状态。
检查仓库的状态
使用 git status
命令检查当前仓库的状态。
$ git status
你应该看到:
$ git status
# On branch master
nothing to commit (working directory clean)
status
命令报告这儿没有什么要提交的。这意味着仓库具有工作目录的全部当前状态。这儿没有不同的更改要记录。
我们将继续使用 git status
命令来监视仓库和工作目录间的状态。