如何忽略本地存储库中的 .hgignore?

发布于 2024-11-09 07:57:51 字数 71 浏览 4 评论 0原文

.hgignore 本身是版本控制的。我添加了一些我想忽略的对象目录,但我不想将这些更改提交到 .hgignore。我该怎么办?

.hgignore itself is version controlled. I've added some object dirs i want to ignore but i do not want to commit these changes to .hgignore. What do i do?

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

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

发布评论

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

评论(2

我的奇迹 2024-11-16 07:57:51

将以下内容添加到存储库的 .hg/hgrc 中:

[ui]
ignore = /path/to/repo/.hg/hgignore

并在其旁边创建一个新文件 .hg/hgignore。此新文件将不会被跟踪,但其工作方式与此特定工作副本的版本化 .hgignore 文件相同。 (/path/to/repo 位很不幸,但在从存储库的子目录中调用 hg 时,它是必需的。)

来源:Mercurial 提示和技巧

Add the following to the repo's .hg/hgrc:

[ui]
ignore = /path/to/repo/.hg/hgignore

and create a new file .hg/hgignore beside it. This new file will be untracked, but work the same as the versioned .hgignore file for this specific working copy. (The /path/to/repo bit is unfortunate but necessary to make it work when invoking hg from within a subdir of the repo.)

Source: Mercurial Tips and Tricks

南风起 2024-11-16 07:57:51

具有讽刺意味的是,您也可以只添加

syntax:glob
.hgignore

到 .hgignore 文件本身。

Ironically enough, you can also just add

syntax:glob
.hgignore

To the .hgignore file itself.

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