如何将 .hgignore 添加到我的 Mercurial 文件夹?
我正在学习使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
执行
touch .hgignore
或
echo "" > .hgignore
在所需目录中
Execute
touch .hgignore
or
echo "" > .hgignore
in the needed directory
从命令行创建它
Create it from the command line
您不需要将其添加到 Mercurial 目录中。您应该将
.hgignore
放置到存储库的根目录中。您还可以设置全局 .hgignore 文件:
您可以在 Mercurial.ini(或 hgrc)文件中看到定义忽略文件的说明:
You don't need to add it to Mercurial directory. You should place
.hgignore
to repository's root directory.You also can set up global .hgignore files:
And there you can see instructions to define ignore file in mercurial.ini (or hgrc) file: