git-rm - Remove files from the working tree and from the index
Remove files matching pathspec from the index, or from the working tree and the index. git rm
will not remove a file from just your working directory. (There is no option to remove a file only from the working tree and yet keep it in the index; use /bin/rm
if you want to do that.)
这里摘录了 git rm 文档中的两段话。
第 1 段话说明 git rm
可以删除工作树中的文件,但第 2 段的意思好像是说,git rm
不能从工作树中删除文件,如果需要的话必须使用/bin/rm
才行。
感觉这两段话是前后矛盾的。
1
AoEiuV020 2021-06-18 12:16:24 +08:00
|
2
xuboying 2021-06-18 12:16:42 +08:00
git rm 的操作是针对 git 系统的也就是必须被 index 索引的东西。
如果你不想修改 git index,或者这个东西和 git 无关,就要用普通的 rm |
3
noe132 2021-06-18 12:21:14 +08:00 1
git rm:
✅ 从 index 删除 ✅ 从 index 和 working tree 删除 ❌ 从 working tree 删除 |
4
AndyAO OP 问题已解决,谢谢
|