忽略 Mercurial 中的部分目录
我需要忽略一个目录,但继续跟踪该目录的一个子文件夹。我的文件树如下所示:
root
-d1
--bin
--bin/data
-d2
--bin
--bin/data
我需要忽略 bin 目录,但跟踪我的存储库的所有文件夹中的 bin/data 目录。现在我正在使用:
syntax: glob
*/obj/*
*/bin/*
*.swp
但是当我运行 hg status 时,看不到我的数据目录中是否有新内容。
谢谢!
I need to ignore a directory but keep tracking of one subfolder of this directory. My files tree looks like:
root
-d1
--bin
--bin/data
-d2
--bin
--bin/data
I need to ignore the bin directory but keeping tracking of the bin/data dir in all the folders of my repo. Rigth now I'm using:
syntax: glob
*/obj/*
*/bin/*
*.swp
but when I run hg status, can't see if there is something new in my data dirs.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想这会满足你的需要。
I think this will do what you need.