交互式暂存

Git提供了很多脚本来辅助某些命令行任务。这里,你将看到一些交互式命令,它们帮助你方便地构建只包含特定组合和部分文件的提交。在你修改了一大批文件然后决定将这些变更分布在几个各有侧重的提交而不是单个又大又乱的提交时,这些工具非常有用。用这种方法,你可以确保你的提交在逻辑上划分为相应的变更集,以便于供和你一起工作的开发者审阅。如果你运行git add时加上-i或者—interactive选项,Git就进入了一个交互式的shell模式,显示一些类似于下面的信息:

  1. $ git add -i
  2. staged unstaged path
  3. 1: unchanged +0/-1 TODO
  4. 2: unchanged +1/-1 index.html
  5. 3: unchanged +5/-1 lib/simplegit.rb
  6. *** Commands ***
  7. 1: status 2: update 3: revert 4: add untracked
  8. 5: patch 6: diff 7: quit 8: help
  9. What now>

你会看到这个命令以一个完全不同的视图显示了你的暂存区——主要是你通过git status得到的那些信息但是稍微简洁但信息更加丰富一些。它在左侧列出了你暂存的变更,在右侧列出了未被暂存的变更。

在这之后是一个命令区。这里你可以做很多事情,包括暂存文件,撤回文件,暂存部分文件,加入未被追踪的文件,查看暂存文件的差别。

暂存和撤回文件

如果你在What now>的提示后输入2或者u,这个脚本会提示你那些文件你想要暂存:

  1. What now> 2
  2. staged unstaged path
  3. 1: unchanged +0/-1 TODO
  4. 2: unchanged +1/-1 index.html
  5. 3: unchanged +5/-1 lib/simplegit.rb
  6. Update>>

如果想暂存TODO和index.html,你可以输入相应的编号:

  1. Update>> 1,2
  2. staged unstaged path
  3. * 1: unchanged +0/-1 TODO
  4. * 2: unchanged +1/-1 index.html
  5. 3: unchanged +5/-1 lib/simplegit.rb
  6. Update>>

每个文件旁边的*表示选中的文件将被暂存。如果你在update>>提示后直接敲入回车,Git会替你把所有选中的内容暂存:

  1. Update>>
  2. updated 2 paths
  3. *** Commands ***
  4. 1: status 2: update 3: revert 4: add untracked
  5. 5: patch 6: diff 7: quit 8: help
  6. What now> 1
  7. staged unstaged path
  8. 1: +0/-1 nothing TODO
  9. 2: +1/-1 nothing index.html
  10. 3: unchanged +5/-1 lib/simplegit.rb

现在你可以看到TODO和index.html文件被暂存了同时simplegit.rb文件仍然未被暂存。如果这时你想要撤回TODO文件,就使用3或者r(代表revert,恢复)选项:

  1. *** Commands ***
  2. 1: status 2: update 3: revert 4: add untracked
  3. 5: patch 6: diff 7: quit 8: help
  4. What now> 3
  5. staged unstaged path
  6. 1: +0/-1 nothing TODO
  7. 2: +1/-1 nothing index.html
  8. 3: unchanged +5/-1 lib/simplegit.rb
  9. Revert>> 1
  10. staged unstaged path
  11. * 1: +0/-1 nothing TODO
  12. 2: +1/-1 nothing index.html
  13. 3: unchanged +5/-1 lib/simplegit.rb
  14. Revert>> [enter]
  15. reverted one path

再次查看Git的状态,你会看到你已经撤回了TODO文件

  1. *** Commands ***
  2. 1: status 2: update 3: revert 4: add untracked
  3. 5: patch 6: diff 7: quit 8: help
  4. What now> 1
  5. staged unstaged path
  6. 1: unchanged +0/-1 TODO
  7. 2: +1/-1 nothing index.html
  8. 3: unchanged +5/-1 lib/simplegit.rb

要查看你暂存内容的差异,你可以使用6或者d(表示diff)命令。它会显示你暂存文件的列表,你可以选择其中的几个,显示其被暂存的差异。这跟你在命令行下指定git diff —cached非常相似:

  1. *** Commands ***
  2. 1: status 2: update 3: revert 4: add untracked
  3. 5: patch 6: diff 7: quit 8: help
  4. What now> 6
  5. staged unstaged path
  6. 1: +1/-1 nothing index.html
  7. Review diff>> 1
  8. diff --git a/index.html b/index.html
  9. index 4d07108..4335f49 100644
  10. --- a/index.html
  11. +++ b/index.html
  12. @@ -16,7 +16,7 @@ Date Finder
  13. <p id="out">...</p>
  14. -<div id="footer">contact : support@github.com</div>
  15. +<div id="footer">contact : email.support@github.com</div>
  16. <script type="text/javascript">

通过这些基本命令,你可以使用交互式增加模式更加方便地处理暂存区。

暂存补丁

只让Git暂存文件的某些部分而忽略其他也是有可能的。例如,你对simplegit.rb文件作了两处修改但是只想暂存其中一个而忽略另一个,在Git中实现这一点非常容易。在交互式的提示符下,输入5或者p(表示patch,补丁)。Git会询问哪些文件你希望部分暂存;然后对于被选中文件的每一节,他会逐个显示文件的差异区块并询问你是否希望暂存他们:

  1. diff --git a/lib/simplegit.rb b/lib/simplegit.rb
  2. index dd5ecc4..57399e0 100644
  3. --- a/lib/simplegit.rb
  4. +++ b/lib/simplegit.rb
  5. @@ -22,7 +22,7 @@ class SimpleGit
  6. end
  7. def log(treeish = 'master')
  8. - command("git log -n 25 #{treeish}")
  9. + command("git log -n 30 #{treeish}")
  10. end
  11. def blame(path)
  12. Stage this hunk [y,n,a,d,/,j,J,g,e,?]?

此处你有很多选择。输入?可以显示列表:

  1. Stage this hunk [y,n,a,d,/,j,J,g,e,?]? ?
  2. y - stage this hunk
  3. n - do not stage this hunk
  4. a - stage this and all the remaining hunks in the file
  5. d - do not stage this hunk nor any of the remaining hunks in the file
  6. g - select a hunk to go to
  7. / - search for a hunk matching the given regex
  8. j - leave this hunk undecided, see next undecided hunk
  9. J - leave this hunk undecided, see next hunk
  10. k - leave this hunk undecided, see previous undecided hunk
  11. K - leave this hunk undecided, see previous hunk
  12. s - split the current hunk into smaller hunks
  13. e - manually edit the current hunk
  14. ? - print help

如果你想暂存各个区块,通常你会输入y或者n,但是暂存特定文件里的全部区块或者暂时跳过对一个区块的处理同样也很有用。如果你暂存了文件的一个部分而保留另外一个部分不被暂存,你的状态输出看起来会是这样:

  1. What now> 1
  2. staged unstaged path
  3. 1: unchanged +0/-1 TODO
  4. 2: +1/-1 nothing index.html
  5. 3: +1/-1 +4/-0 lib/simplegit.rb

simplegit.rb的状态非常有意思。它显示有几行被暂存了,有几行没有。你部分地暂存了这个文件。在这时,你可以退出交互式脚本然后运行git commit来提交部分暂存的文件。

最后你也可以不通过交互式增加的模式来实现部分文件暂存——你可以在命令行下通过git add -p或者git add —patch来启动同样的脚本。