删除.gitignore中的文件
.gitignore文件中可以列举出哪些文件不希望提交到git中, 只对还没有提交的文件生效, 如果已经有文件提交了, 即使添加到.gitignore也不会起作用.这时候可以用命令:
|
|
参数含义 #
rm: Remove files from the working tree and from the index.
-r: allow recursive removal
–cached: only remove from the index
Categories: