如何 Git 忽略包含“tiu”的内容文字文件

发布于 2024-11-30 11:30:45 字数 273 浏览 0 评论 0原文

类别如下:

/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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

薄暮涼年 2024-12-07 11:30:46

如果您想忽略所有 tiu* 文件,请使用全局模式(首先不指定目录):

tui*.css

如果这不起作用,请使用以下模式规则:
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):

tui*.css

If this does not work, here are the rules for patterns:
http://git-scm.com/docs/gitignore

木格 2024-12-07 11:30:46

如果它们已添加到存储库中,您需要将它们从存储库中删除,而不删除文件。执行此操作:

git rm --cached /Script/tiu*

这将从存储库和索引中删除对象,但保留工作目录。从那时起,它们应该被 git statusgit 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:

git rm --cached /Script/tiu*

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 and git add (and by extension git commit -a).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文