我的本地存储库中有下一个文件:
app.component.js
core.component.js
core.service.local.js
core.service.power.ts
我的问题很简单,我怎么做才能忽略扩展名.component.js和.service.local.js等文件,我的意思是任何以.Any_String.ext结尾的文件
答案 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
或使用通配符表示,并确保仅忽略不需要的文件。