目的

学习如何还原工作目录中的更改。

检出 Master

在处理之前确认你在 master 中的最新提交上。

  1. $ git checkout master

更改 hello.rb

有时候你修改了本地工作目录中的文件,且想要还原已经提交 的内容。checkout 命令可以用来处理这种情况。

更改 hello.rb 让其具有错误的注释。

  1. # This is a bad comment. We want to revert it.
  2. name = ARGV.first || "World"
  3. puts "Hello, #{name}!"

检查状态

首先,检查工作目录的状态。

  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")

我们看到 hello.rb 已被修改,但还没有暂存。

还原工作目录中的更改

使用 checkout 命令来检出 hello.rb 在仓库中的版本。

  1. $ git checkout hello.rb
  2. $ git status
  3. $ cat hello.rb
  1. $ git checkout hello.rb
  2. $ git status
  3. # On branch master
  4. nothing to commit (working directory clean)
  5. $ cat hello.rb
  6. # Default is "World"
  7. name = ARGV.first || "World"
  8. puts "Hello, #{name}!"

status 命令显示在工作目录中没有未完成的更改。而且“错 误的注释”也不再成为文件内容的一部分。