joy keeps flowin'

删除.gitignore中的文件

xx

.gitignore文件中可以列举出哪些文件不希望提交到git中, 只对还没有提交的文件生效, 如果已经有文件提交了, 即使添加到.gitignore也不会起作用.这时候可以用命令:

1
git rm -r --cached file/directory

参数含义 #

rm: Remove files from the working tree and from the index.

-r: allow recursive removal

–cached: only remove from the index

标签:
Categories: