将包含标签的 SVN 项目转换为 Mercurial
我正在尝试对具有主干和一些标签(但没有分支)的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在运行
hg Convert
时显式传入包含标签的目录:来自
hg help Convert
。如果这不起作用,您使用的确切隐蔽命令行是什么?运行后.hgtags文件中是否有任何内容?Try explictly passing in the directory containing the tags when running
hg convert
: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?