Mercurial 忽略文件
如何忽略不同项目内 bin 文件夹中的所有内容?
简单的方法 -
^projects/a/bin/*$
^projects/b/bin/*$
我想做类似的事情 -
^projects/*/bin/*$
但上面的方法不起作用。
How do I ignore everything in a bin folder which is inside different projects?
easy way -
^projects/a/bin/*$
^projects/b/bin/*$
I wanted to do something like -
^projects/*/bin/*$
But the above does not work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用 .hgignore 的 glob 语法来更简单地完成此类操作:
You may use glob syntax for .hgignore to do such things even simpler:
为了忽略固定级别的指定文件夹,我使用如下方法:
In order to ignore the specified folders at a fixed level I'm using something like this:
最简单的是这样的:
The simplest is this:
要使其成为有效的正则表达式,您需要:
To make that a valid regex you need: