当前位置:   article > 正文

git------git add 新解 -i -p_git add -i -p

git add -i -p

交互式暂存(新版git):

 

git add -i  | -interactive // 进入交互式暂存编辑界面 

git add -p | --patch  // 文件局部内容操作(暂时没看懂)

  1. 交互式暂存(新版git):
  2. git add -i | -interactive // 进入交互式暂存编辑界面
  3. staged unstaged path
  4. 1: unchanged +0/-1 TODO
  5. 2: unchanged +1/-1 index.html
  6. 3: unchanged +5/-1 lib/simplegit.rb
  7. *** Commands ***
  8. 1: status 2: update 3: revert 4: add untracked
  9. 5: patch 6: diff 7: quit 8: help
  10. What now>
  11. 将暂存的修改列在左侧,未暂存的修改列在右侧。
  12. 命令区域。 在这里你可以做一些工作,包括暂存文件、取消暂存文件、暂存文件的一部分、添加未被追踪的文件、查看暂存内容的区别。
  13. 暂存与取消暂存文件:
  14. 1.在 What now> 提示符后键入 2 或 u,脚本将会提示想要暂存哪个文件:
  15. What now> 2
  16. staged unstaged path
  17. 1: unchanged +0/-1 TODO
  18. 2: unchanged +1/-1 index.html
  19. 3: unchanged +5/-1 lib/simplegit.rb
  20. Update>>1,2
  21. 注意:
  22. 表示暂存1,2两个文件
  23. 不输入任何东西并直接按回车,Git 将会暂存之前选择的文件:
  24. 取消暂存某个文件:
  25. 取消暂存 TODO 文件,使用 3 或 r(撤消)选项:
  26. *** Commands ***
  27. 1: status 2: update 3: revert 4: add untracked
  28. 5: patch 6: diff 7: quit 8: help
  29. What now> 3
  30. staged unstaged path
  31. 1: +0/-1 nothing TODO
  32. 2: +1/-1 nothing index.html
  33. 3: unchanged +5/-1 lib/simplegit.rb
  34. Revert>> 1
  35. staged unstaged path
  36. * 1: +0/-1 nothing TODO
  37. 2: +1/-1 nothing index.html
  38. 3: unchanged +5/-1 lib/simplegit.rb
  39. Revert>> [enter]
  40. reverted one path
  41. *** Commands ***
  42. 1: status 2: update 3: revert 4: add untracked
  43. 5: patch 6: diff 7: quit 8: help
  44. What now> 1
  45. staged unstaged path
  46. 1: unchanged +0/-1 TODO
  47. 2: +1/-1 nothing index.html
  48. 3: unchanged +5/-1 lib/simplegit.rb
  49. 我们发现TODO文件被取消暂存了;
  50. 想要查看已暂存内容的区别,可以使用 6 或 d(区别)命令
  51. 暂存文件中的一部分:
  52. 如果在 simplegit.rb 文件中做了两处修改,但只想要暂存其中的一个而不是另一个,Git 会帮你轻松地完成。
  53. 通常情况下可以输入 y 或 n 来选择是否要暂存每一个区块,当然,暂存特定文件中的所有部分或为之后的选择跳过一个区块也是非常有用的。 如果你只暂存文件的一部分,状态输出可能会像下面这样:
  54. (这里说明下,部分暂存,个人尚未实验成功,后续添加亲身体验的反馈!!!)

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小舞很执着/article/detail/822892
推荐阅读
相关标签
  

闽ICP备14008679号