强制 Mercurial 始终使用 --subrepos
是否可以将 Mercurial 配置为始终检查子存储库?
我希望它始终启用,而不必每次都在命令上指定它。
Is it possible to configure Mercurial to always check subrepos?
I'd like it enabled all the time without having to specify it on the command each time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 别名 来执行此操作。将条目添加到您的
.hg/hgrc
中,例如:对于您想要的其他子存储库感知命令,依此类推。查看
hg help subrepos
的帮助文本,这将是添加、存档、提交(我使用的是 v1.8.1,它默认提交子存储库,但我似乎记得早期版本没有' t)、差异、传入、传出、拉取、推送、状态和更新。You can use an alias to do this. Add entries to your
.hg/hgrc
like:And so on for the other subrepo-aware commands that you want. Looking at the help text for
hg help subrepos
, that would be add, archive, commit (I'm using v1.8.1 and it commits subrepos by default, but I seem to recall that earlier versions didn't), diff, incoming, outgoing, pull, push, status and update.