如何将单个 hg 存储库转换为多个存储库

发布于 2024-10-19 07:29:21 字数 188 浏览 4 评论 0原文

我有一个包含 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 技术交流群。

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

发布评论

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

评论(1

鹿港巷口少年归 2024-10-26 07:29:21

使用 转换扩展名--filemap 标志(在确保在您的 ~/.hgrc 中启用了 convert 扩展):

$ hg init new-a
$ cat > a-map
rename a .
exclude b
exclude c
...
$ hg convert --filemap a-map old-repo new-a
$ cd new-a
$ hg co tip

Use the convert extension and the --filemap flag (after making sure that the convert extension is enabled in your ~/.hgrc):

$ hg init new-a
$ cat > a-map
rename a .
exclude b
exclude c
...
$ hg convert --filemap a-map old-repo new-a
$ cd new-a
$ hg co tip
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文