4. 检查状态 ============== 目标 ^^^^^^^ * 学习如何检查仓库的状态。 检查仓库的状态 ----------------- 使用 ``git status`` 命令检查仓库的当前状态。 .. code-block:: shell $ git status 你可以看到: 输出: .. code-block:: shell $ git status On branch master nothing to commit, working tree clean ``status`` 命令报告此处没有要提交的内容。这意味着仓库具有工作目录的全部当前状态。没有要记录的突出更改。 我们将继续使用 ``git status`` 命令来监视仓库和工作目录之间的状态。