如何忽略本地存储库中的 .hgignore?
.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将以下内容添加到存储库的
.hg/hgrc
中:并在其旁边创建一个新文件
.hg/hgignore
。此新文件将不会被跟踪,但其工作方式与此特定工作副本的版本化.hgignore
文件相同。 (/path/to/repo
位很不幸,但在从存储库的子目录中调用hg
时,它是必需的。)来源:Mercurial 提示和技巧
Add the following to the repo's
.hg/hgrc
: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 invokinghg
from within a subdir of the repo.)Source: Mercurial Tips and Tricks
具有讽刺意味的是,您也可以只添加
到 .hgignore 文件本身。
Ironically enough, you can also just add
To the .hgignore file itself.