将包含标签的 SVN 项目转换为 Mercurial

发布于 2024-08-24 03:35:43 字数 276 浏览 5 评论 0原文

我正在尝试对具有主干和一些标签(但没有分支)的 SVN 存储库使用 hg Convert Mercurial 命令。SVN 文件夹布局如下所示:

Foo
  tags
    1.00a
    1.00b-test
  trunk

尽管导入成功,但它会出现我只得到了主干,在 Hg 存储库中看不到标签。发出 hg 标签hg 分支 不会显示它们。

我在这里做错了什么吗?

I am attempting to use the hg convert Mercurial command against an SVN repository that has a trunk and some tags (but no branches.) The SVN folder layout looks like this:

Foo
  tags
    1.00a
    1.00b-test
  trunk

Although the import succeeds, it would appear I am only gettting the trunk and the tags are nowhere to be seen in the Hg repository. Issuing hg tags or hg branches doesn't show them.

Am I doing something wrong here?

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

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

发布评论

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

评论(1

维持三分热 2024-08-31 03:35:43

尝试在运行 hg Convert 时显式传入包含标签的目录:

--config convert.svn.tags=tags            (directory name)
    specify the directory containing tags

来自 hg help Convert。如果这不起作用,您使用的确切隐蔽命令行是什么?运行后.hgtags文件中是否有任何内容?

Try explictly passing in the directory containing the tags when running hg convert:

--config convert.svn.tags=tags            (directory name)
    specify the directory containing tags

from hg help convert. If that doesn't do it, what's the exact covert command line you're using? Is there anything in the .hgtags file after you run?

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