.gitignore两个或多个扩展文件

时间:2017-06-08 13:34:57

标签: git gitignore

我的本​​地存储库中有下一个文件:

app.component.js core.component.js core.service.local.js core.service.power.ts

我的问题很简单,我怎么做才能忽略扩展名.component.js和.service.local.js等文件,我的意思是任何以.Any_String.ext结尾的文件

2 个答案:

答案 0 :(得分:5)

使用野性字符'*'。示例*.component.js

答案 1 :(得分:2)

最简单的方法是将这些内容添加到.gitignore文件中。

使用此命令停止跟踪特定文件

git rm --cached .

在这种情况下,您可以停止跟踪以下文件。

git rm --cached public/app/core.service.local.js

gitignore文件中添加这些内容。我不确定你想要使用* .component.js跳过所有文件,还是只想跳过这4个文件。

app.component.js
core.component.js
core.service.local.js
core.service.power.ts

或使用通配符表示,并确保仅忽略不需要的文件。