如何将单个 hg 存储库转换为多个存储库
我有一个包含 5 个子目录的存储库。
repo/
a/
file-a
b/
file-b
c/
file-c
d/
file-d
e/
file-e
如何将每个子目录转换为不同的存储库? (只有给定子目录的相关变更集才应转换为新存储库)
I have a repository with 5 sub-directories.
repo/
a/
file-a
b/
file-b
c/
file-c
d/
file-d
e/
file-e
How can I convert each sub-directory in to different repositories? (Only relevant changesets to the given sub-directory should be converted new repositories)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 转换扩展名 和
--filemap
标志(在确保在您的~/.hgrc
中启用了convert
扩展):Use the convert extension and the
--filemap
flag (after making sure that theconvert
extension is enabled in your~/.hgrc
):