强制 Mercurial 始终使用 --subrepos

发布于 2024-10-31 10:18:54 字数 67 浏览 1 评论 0原文

是否可以将 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 技术交流群。

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

发布评论

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

评论(1

心意如水 2024-11-07 10:18:54

您可以使用 别名 来执行此操作。将条目添加到您的 .hg/hgrc 中,例如:

[alias]
status = status --subrepos
add = add --subrepos
...

对于您想要的其他子存储库感知命令,依此类推。查看 hg help subrepos 的帮助文本,这将是添加、存档、提交(我使用的是 v1.8.1,它默认提交子存储库,但我似乎记得早期版本没有' t)、差异、传入、传出、拉取、推送、状态和更新。

You can use an alias to do this. Add entries to your .hg/hgrc like:

[alias]
status = status --subrepos
add = add --subrepos
...

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.

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