如何创建带有空格的 Mercurial 标签

发布于 2024-09-08 02:38:42 字数 343 浏览 1 评论 0原文

我想将 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 技术交流群。

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

发布评论

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

评论(1

心房的律动 2024-09-15 02:38:42

使用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".

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