DevOps 完全知识体系
Remove files from the working tree and from the index用于从工作区和索引中删除文件
Remove files from the working tree and from the index
用于从工作区和索引中删除文件
当我们需要删除暂存区或分支上的文件,同时工作区也不需要这个文件了。
git rm <file1> <file2> ...
当我们需要删除暂存区或分支上的文件,但本地又需要使用,只是不希望这个文件被版本库控制。
git rm --cached <file>