如何创建带有空格的 Mercurial 标签
我想将 Mercurial 中的变更集标记为“Distribution 1.0”。 不幸的是,我找不到用于创建名称中包含空格的标签的命令行命令。
当我使用 hg tag -m "Distribution 1.0"
(双引号)时,我得到了 hg tag 命令的帮助,表明我有错误。
当我使用 hg tag -m 'Distribution 1.0'
时,会创建一个名为 1.0'
(单引号)的标签。
我知道有些工具不喜欢空格,但如果我编辑 .hgtags 文件,我可以创建一个带有空格的标签。
有人知道该怎么做吗?
I would like to tag a changeset in Mercurial to 'Distribution 1.0'.
Unfortunatly I cannot find a command line command for creating a tag with a space in it's name.
When I use hg tag -m "Distribution 1.0"
(double quotes) I get the help for the hg tag command indicating that I have an error.
When I use hg tag -m 'Distribution 1.0'
a tag with the name 1.0'
(single quotes) is created.
I know some tools don't like spaces alltogether, but if I edit my .hgtags file I can create a tag with a space.
Anybody knows how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
hg标签“Distribution 1.0”
。-m
选项为创建标记的提交提供消息,因此您可以同时使用:hg tag "Distribution 1.0" -m "Distribution 1.0"
。Use
hg tag "Distribution 1.0"
. The-m
option provides the message for the commit that creates the tag, so you can use both:hg tag "Distribution 1.0" -m "Distribution 1.0"
.