Blogger Information
Blog 143
fans 1
comment 0
visits 440287
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
git 删除已经 add 的文件
弘德誉曦的博客
Original
1801 people have browsed it

git 删除已经 add 的文件

原创 2013年07月21日 18:45:22

44443

使用 git rm 命令即可,有两种选择,

一种是 git rm --cached "文件路径",不删除物理文件,仅将该文件从缓存中删除;

一种是 git rm --f "文件路径",不仅将该文件从缓存中删除,还会将物理文件删除(不会回收到垃圾桶)。

2016.0528.0904 更新:

[其他] 请问 git rm --cache 和 git reset HEAD 的区别到底在哪里呢?

如果要删除文件,最好用 git rm file_name,而不应该直接在工作区直接 rm file_name。

如果一个文件已经add到暂存区,还没有 commit,此时如果不想要这个文件了,有两种方法:

1,用版本库内容清空暂存区,git reset HEAD

2,只把特定文件从暂存区删除,git rm --cached xxx

PS:再次亲测,git rm --cached xxx 并没有问题;慎重使用 git reset HEAD



Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post