关于 Mercurial、.hgignore 文件和 glob 语法

发布于 2024-08-23 06:46:35 字数 337 浏览 7 评论 0原文

在对 .hgignore 文件使用 glob 语法时,是否可以递归地忽略除一个之外的某些文件和文件夹?

假设您有:

a/
a/b
a/c
a/d

类似的东西:

syntax globe:
a
^a/b

理想情况下应该忽略cd并保留b

我知道这已经在其他 SO 问题中讨论过,但似乎它们都使用 regex 模式作为语法。

Is it possible, while using glob syntax for an .hgignore file, to recursively ignore certain files and folders, except one?

Assuming that you have:

a/
a/b
a/c
a/d

Something like:

syntax globe:
a
^a/b

This should ideally ignore c and d and keep b.

I know this has been discussed in other SO questions, but it seems they're all using regex mode for the syntax.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

终难遇 2024-08-30 06:46:35

如果您想忽略除一项之外的所有项,只需添加该一项即可。添加文件会覆盖忽略它,这与 subversion 或 cvs 不同,但非常方便。

If you want to ignore all but one, just add that one. Adding a file overrides ignoring it, which differs from subversion or cvs, but is incredibly handy.

陌路黄昏 2024-08-30 06:46:35

glob 语法在 match.py​​ 中转换为正则表达式。看来这就是您正在寻找的语法:

syntax:glob

a/*[!b]

The glob syntax is transformed to regex in match.py. It seems that this is the syntax you are looking for:

syntax:glob

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