我想从 ~/bin/ 的 Git 中删除所有文件。
我跑
git rm -r --cached ~/.vim/* # Thanks to Pate in finding --cached!
我明白了
fatal: pathspec '.vim/colors' did not match any files
此错误消息建议我使用以下 PATH,因为 ~/.vim/** 不起作用
~/.vim/* # I get the error
~/.vim/*/*/* # This removes files from the index at ~/.vim/folderA/folderB/file1.txt
~/.vim/*/* # similar error as to the first PATH
如何从 Git 中删除 ~/.vim 中的所有文件和子目录?
--