如何将 .hgignore 添加到我的 Mercurial 文件夹?

发布于 2024-10-17 04:51:06 字数 253 浏览 3 评论 0原文

我正在学习使用 Mercurial,它的学习曲线非常简单。但我的问题之一是,我无法将 .hgignore 文件添加到 Mercurial 文件夹中。 Windows(7)不允许我这样做,当我运行命令时

hg 添加 .hgignore

,它返回错误:

系统找不到指定的 文件。

我怎样才能创建/添加这个文件?

I'm learning to use Mercurial, and its learning curve is pretty straightforward. But one of my problem is, I can't add the .hgignore file to Mercurial folder. Windows (7) does not allow me to do this, and when I run the command

hg add .hgignore

, it returns error:

the system cannot find the specified
file.

How can I create/add this file?

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

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

发布评论

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

评论(3

呆橘 2024-10-24 04:51:06

执行

touch .hgignore

echo "" > .hgignore

在所需目录中

Execute

touch .hgignore

or

echo "" > .hgignore

in the needed directory

海拔太高太耀眼 2024-10-24 04:51:06

从命令行创建它

echo syntax: glob > .hgignore

Create it from the command line

echo syntax: glob > .hgignore
许久 2024-10-24 04:51:06

您不需要将其添加到 Mercurial 目录中。您应该将 .hgignore 放置到存储库的根目录中。

Mercurial 系统使用存储库根目录中名为 .hgignore 的文件来控制其搜索当前未跟踪的文件时的行为

您还可以设置全局 .hgignore 文件:

此外,Mercurial 配置文件可以引用一组每用户或全局忽略文件。有关如何配置这些文件的详细信息,请参阅 hgrc(5) 手册页。在“ui”部分中查找“ignore”条目。

您可以在 Mercurial.ini(或 hgrc)文件中看到定义忽略文件的说明:

忽略
用于读取每个用户忽略模式的文件。此文件的格式应与存储库范围内的 .hgignore 文件相同。该选项支持钩子语法,因此如果您想指定多个忽略文件,可以通过设置类似ignore.other = ~/.hgignore2 的方式来实现。有关忽略文件格式的详细信息,请参阅 hgignore(5) 手册页。

You don't need to add it to Mercurial directory. You should place .hgignore to repository's root directory.

The Mercurial system uses a file called .hgignore in the root directory of a repository to control its behavior when it searches for files that it is not currently tracking

You also can set up global .hgignore files:

In addition, a Mercurial configuration file can reference a set of per-user or global ignore files. See the hgrc(5) man page for details of how to configure these files. Look for the "ignore" entry in the "ui" section.

And there you can see instructions to define ignore file in mercurial.ini (or hgrc) file:

ignore
A file to read per-user ignore patterns from. This file should be in the same format as a repository-wide .hgignore file. This option supports hook syntax, so if you want to specify multiple ignore files, you can do so by setting something like ignore.other = ~/.hgignore2. For details of the ignore file format, see the hgignore(5) man page.

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