最近查看 git-add 的手册,遇到下面的两个选项,有点搞不明白
-N, --intent-to-add
Record only the fact that the path will be added later. An entry for the path is placed in
the index with no content. This is useful for, among other things, showing the unstaged
content of such files with git diff and committing them with git commit -a.
--refresh
Don't add the file(s), but only refresh their stat() information in the index.
请问这两个选项的使用场景在哪里呢
1
itommy 2017-06-24 10:24:06 +08:00
-N 的场景是:
- 新加了一个文件,这个文件目前没被 git 追踪的 - 一般在 git add 之前你希望 diff 看看改了什么内容 - 这个新文件在 diff 里面是不会出现的 - 如果想在 diff 里面看到的话,就先把这个文件 add -N <filename> - 然后 diff --refresh 还没用过 |
2
cyio 2017-06-24 11:18:41 +08:00
平进常用 -p,刚知道新增文件是 -N
交互式提交,可以有选择的提交部分内容 |