目的

学习如何监视工作目录的状态。

更改“Hello, World”程序

是时候更改我们的 hello 程序以便使它能从命令行传递参数。将 文件更改为:

  1. puts "Hello, #{ARGV.first}!"

检查状态

现在检查工作目录的状态。

  1. $ git status

你应该看到:

  1. $ git status
  2. # On branch master
  3. # Changes not staged for commit:
  4. # (use "git add <file>..." to update what will be committed)
  5. # (use "git checkout -- <file>..." to discard changes in working directory)
  6. #
  7. # modified: hello.rb
  8. #
  9. no changes added to commit (use "git add" and/or "git commit -a")

值得注意的第一件事是 Git 知道 hello.rb 文件已被修改,但 Git 还没有通知这些更改。

另外要注意的是状态信息给你接下来需要做什么的提示。如 果你想要添加这些更改到仓库,那么使用 git add 命令。 否则,使用 git checkout 命令放弃更改。

下一步

让我们暂存更改。