使用带 git 的全局路径?

Use globbed paths with git?

我现在在以前只使用 .css 个文件的项目中使用 .sass 个文件。

我添加了 .sass 个文件 git add 个文件。

现在,在我的 .gitignore

中添加 *.css*.css.map 之后,我想用一个命令删除所有 .css 文件

此命令在语法上是否有效?

git remove modules/**/*.css
git remove modules/**/*.css.map

尝试将 remove 替换为 rm:

git rm modules/**/*.css
git rm modules/**/*.css.map