如何 Git 忽略包含“tiu”的内容文字文件
类别如下:
/Script/tiu_adfsfdfdsff.js
/Script/tiu_adfsfdfdsff.js
...
/CSS/tiu_adfsfdfdsff.css
/CSS/tiu_adfsfdfdsff.css
...
我想忽略包含“tiu”文件
我的 .gitignore 文件是:
CSS/tiu*.css
Script/tiu*.js
但它不起作用?
the category like:
/Script/tiu_adfsfdfdsff.js
/Script/tiu_adfsfdfdsff.js
...
/CSS/tiu_adfsfdfdsff.css
/CSS/tiu_adfsfdfdsff.css
...
i want to ignore contain "tiu" files
my .gitignore files is:
CSS/tiu*.css
Script/tiu*.js
but it don't work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想忽略所有 tiu* 文件,请使用全局模式(首先不指定目录):
如果这不起作用,请使用以下模式规则:
http://git-scm.com/docs/gitignore
if you want to ignore all the tiu* files, use a global pattern (without specifying the directory at first):
If this does not work, here are the rules for patterns:
http://git-scm.com/docs/gitignore
如果它们已添加到存储库中,您需要将它们从存储库中删除,而不删除文件。执行此操作:
这将从存储库和索引中删除对象,但保留工作目录。从那时起,它们应该被
git status
和git add
(以及扩展git commit -a
)愉快地忽略。If they're already added to the repository, you need to remove them from the repo without deleting the files. Do that with:
That will remove the objects from the repo and the index, but leave the working directory alone. From then on, they should be happily ignored by
git status
andgit add
(and by extensiongit commit -a
).