转义分支名称中的冒号

发布于 2024-11-19 08:12:04 字数 534 浏览 1 评论 0原文

我将一个 hg flow 修补程序命名为 bug1234:somthing,但现在我无法完成我总是得到的修补程序:

hg: parse error at 6: syntax error

是否有办法转义分支名称中的冒号,以便我可以完成我的修补程序?

我正在使用:
Ubuntu 11.04
Mercurial 分布式 SCM(版本 1.8.4)
HG Flow

使用命令启动了修补程序:

$>hg flow hotfix start bug110711:Billing

编码后(错误修复)我尝试过:

$>hg flow hotfix finish bug110711:Billing
hg: parse error at 6: syntax error

I named a hg flow hotfix like bug1234:somthing, and now I can not finish the hotfix I always get:

hg: parse error at 6: syntax error

Is there a way to escape the colon in the branchname, so I can finish my hotfix?

I'm using:
Ubuntu 11.04
Mercurial Distributed SCM (version 1.8.4)
HG Flow

started the hotfix with command:

gt;hg flow hotfix start bug110711:Billing

after coding (bugfix) I tried:

gt;hg flow hotfix finish bug110711:Billing
hg: parse error at 6: syntax error

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

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

发布评论

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

评论(3

埖埖迣鎅 2024-11-26 08:12:04

我遇到了同样的问题。不过,我运行的 hg 操作有所不同,我尝试更新到名称中带有冒号的分支。解决方案是引用该命令两次。因此,您的命令将如下所示:

hg update -r '"My branch with a : character"'

这个想法是外部引号 (') 用于 shell,内部引号 (") 用于 revset 解析器。

I ran into the same problem. The hg operation I ran was different though, I tried to update to a branch with a colon in the name. The solution was to quote the command twice. So your command will look like this:

hg update -r '"My branch with a : character"'

The idea is that the outer quotes (') are for the shell and the inner ones (") are for the revset parser.

浮生面具三千个 2024-11-26 08:12:04

hg tag 的错误信息比 hg flow 的错误信息更清晰:

$ hg tag "bug1234:so"
abort: ':' cannot be used in a tag name

The error message of hg tag is more clear than the one of hg flow:

$ hg tag "bug1234:so"
abort: ':' cannot be used in a tag name
萤火眠眠 2024-11-26 08:12:04

将特殊单词用“”包裹起来,将整个参数包裹在“”中,

例如

hg log -r '::"first"'

wrap the special word with "" and entire parameter in ''

e.g

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