如何(是否可能)创建运行多个命令的 hg 命令别名?

发布于 2024-10-18 22:48:48 字数 246 浏览 2 评论 0原文

我想在 hgrc 文件中定义一个 Mercurial 命令别名来调用多个命令。例如,我想做类似以下的事情:

[alias]
giveup = revert --all --no-backup; purge
syncprod = fetch production; push production

这将允许我调用 hgsyncprod 并让它调用获取,然后调用推送。无法确定该功能是否存在。 (我猜这意味着不。)

I would like to define a Mercurial command alias in my hgrc file that invokes multiple commands. For example I would like to do something like the following:

[alias]
giveup = revert --all --no-backup; purge
syncprod = fetch production; push production

This would allow me to call hg syncprod and have it invoke a fetch and then a push. Haven't been able to determine if this capability exists. (I'm guessing that means no.)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

嘿咻 2024-10-25 22:48:48

使用这样的 shell 别名样式:

giveup = !$HG revert --all --no-backup ; $HG purge

不过,我个人只是为它们创建一个 bash 别名,这样我就可以完全跳过 hg 部分。

Use the shell alias style like this:

giveup = !$HG revert --all --no-backup ; $HG purge

Though, personally I'd just create a bash alias for those so I could skip the hg part altogether.

月野兔 2024-10-25 22:48:48

要在 Windows 上执行此操作,以下语法对我有用,而无需使用 PowerShell 或 cygwin。

giveup = !hg revert --all --no-backup && hg purge

或者,无论恢复是否成功,此版本都将执行清除:

giveup = !hg revert --all --no-backup & hg purge

可以将两个以上的命令串在一起,例如:

shebase = !hg shelve && hg rebase && hg unshelve

To do this on Windows, the following syntax worked for me, without having to use PowerShell or cygwin.

giveup = !hg revert --all --no-backup && hg purge

Alternatively, this version will execute the purge regardless of whether the revert was successful:

giveup = !hg revert --all --no-backup & hg purge

It is possible to string together more than two commands, for instance:

shebase = !hg shelve && hg rebase && hg unshelve
你的呼吸 2024-10-25 22:48:48

您可以从别名调用 powershell 或 cmd。例如我使用以下
带有 powershell 的别名:

amend = !powershell -NoProfile -Command hg ci -m $(cat .hg\last-message.txt)

(Bozydar Sobczak 于 2012 年 4 月 7 日留下的评论)

You can call powershell or cmd from the alias. E.g. I use following
alias with powershell:

amend = !powershell -NoProfile -Command hg ci -m $(cat .hg\last-message.txt)

(Comment left by Bozydar Sobczak Apr 7, 2012)

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