【问题标题】:mercurial subrepos at the current revision of a specific branch特定分支当前版本的 mercurial subrepos
【发布时间】:2011-05-21 16:32:33
【问题描述】:

我对 mercurial 很陌生,我已经阅读了很多关于这个主题的主题,但我仍然不明白我是否能实现我想要做的事情。

基本上,我有兴趣在单个命令中从主存储库及其子存储库克隆当前版本的分支(作用于主存储库)。稍后我会尝试更好地解释它。

假设我将我的代码分成模块(在下面的示例中只有一个模块)。我希望每个模块都在自己的存储库中,并有一个主存储库(具有 .hgsub 的那个)作为胶水来保持所有子存储库的位置。主存储库仅包含 .hgsub 和一个脚本,该脚本 (1) hg archive 预定义目录中的每个子存储库和 (2) 执行代码的源外构建。所有开发、提交、推送、拉取、合并都在各个子存储库中完成。

# create a module (subrepo of the master)
hg init subrepo
cd subrepo/
echo "a file" > aFile.c
echo "another file" > anotherFile.txt
hg add
hg ci -m "initial rev of subrepo"

# create the main (master) repo & add the reference to subrepo
cd ../
hg init main
cd main
hg clone ../subrepo subrepo
echo subrepo = ../subrepo > .hgsub
echo hg archive and out-of-source build > build.script
hg add
hg ci -m "initial rev of main repo"

到目前为止,一切都很好。如果我hg clone main 我得到了 subrepo 默认分支的当前版本,正如预期的那样。

但是,现在让我们想象一下,我已准备好将我的代码发布到一个版本中:1.0.0。我会这样做。

# create the branch 1.0 to manage the bug fixes to 1.0.0 and furthers
cd ../subrepo/
hg branch 1.0
hg ci -m "creating the branch 1.0"

# backstep to the main line to carry on the development of new features
hg up default 
echo "working in the main line" > aNewFeature.c
hg add
hg ci -m "carrying on the development in the main line (a new feature)"
hg glog 
@  changeset:   2:c499329c2729
|  tag:         tip
|  parent:      0:50d4522a99ea
|  user:        XXXX
|  date:        Tue Dec 07 16:13:28 2010 +0100
|  summary:     carrying on the development in the main line (a new feature)
|
| o  changeset:   1:0a81043e6e8a
|/   branch:      1.0
|    user:        XXXX
|    date:        Tue Dec 07 16:12:02 2010 +0100
|    summary:     creating the branch 1.0
|
o  changeset:   0:50d4522a99ea
   user:        XXXX
   date:        Tue Dec 07 15:52:57 2010 +0100
   summary:     initial rev of subrepo

这就是问题发生的地方。当我执行hg clone 时,如何更改主存储库以获取默认的当前版本或最终获取子存储库的 1.0 分支?

我会说这行得通。

# replicate the branch structure also in the main repo
cd ../main/
hg branch 1.0
echo subrepo = ../subrepo -r 1.0 > .hgsub
hg ci -m "adding -r 1.0 to .hgsub"
hg up default 
echo subrepo = ../subrepo -r default > .hgsub
hg ci -m "adding -r default to .hgsub"
hg glog 
@  changeset:   2:f97c90a31a21
|  tag:         tip
|  parent:      0:1fd6b5d528b4
|  user:        XXXX
|  date:        Tue Dec 07 16:22:05 2010 +0100
|  summary:     adding -r default to .hgsub
|
| o  changeset:   1:3d9ed2f8b026
|/   branch:      1.0
|    user:        XXXX
|    date:        Tue Dec 07 16:21:32 2010 +0100
|    summary:     adding -r 1.0 to .hgsub
|
o  changeset:   0:1fd6b5d528b4
   user:        XXXX
   date:        Tue Dec 07 15:55:53 2010 +0100
   summary:     initial rev of main repo

但是当我 hg clone 主仓库时,我得到了

cd /a/directory
hg clone /path/to/main -r 1.0 main
requesting all changes
adding changesets
adding manifests
adding file changes
added 2 changesets with 3 changes to 2 files
updating to branch 1.0
pulling subrepo subrepo
abort: HTTP Error 404: Not Found

有没有办法实现我想做的事情?

谢谢。

快速更新:在我发布问题一分钟后,我发现了一个我从未见过的answer。在那里,建议使用以下语法

http://[user[:pass]@]host[:port]/[path][#revision]

使用#branchname 代替#revision。因此,在我的示例中,以下内容应该有效(对于分支 1.0):

echo subrepo = ../subrepo#1.0 > .hgsub

但是当我 hg clone 得到主仓库时:

pulling subrepo subrepo
abort: unsupported URL component: "1.0"
Exception AttributeError: "'httprepository' object has no attribute 'urlopener'" in <bound method httprepository.__del__ of <mercurial.httprepo.httprepository object at 0x871332c>> ignored

我正在开发 Ubuntu 10.04,mercurial 1.4.3-1。有什么建议吗?

-- 迪伦

【问题讨论】:

  • 在示例说明的第一行(创建子存储库的位置),您似乎忘记了子存储库的 hg init
  • 好吧,感谢您指出。无论如何,我在从我的外壳复制/粘贴时显然犯了一个错误。如果我真的忘记了hg init,我的shell 会返回以下错误:hg add abort: There is no Mercurial repository here (.hg not found)!

标签: mercurial branch subrepos


【解决方案1】:

这一行是错误的:

echo subrepo = ../subrepo -r default > .hgsub

您不能在.hgsub 文件中为克隆操作添加额外的选项。这样做也是不对的

echo subrepo = ../subrepo#1.0 > .hgsub

.hgsub 文件的结构如下:

subrepo-mount-point = subrepo-source-URL

就是这样。然后,Mercurial 将使用 subrepo-source-URL 克隆子存储库,并将子存储库克隆作为 subrepo-mount-point 放置在外部存储库中。

下一个问题是子存储库 Mercurial 的哪个版本应该为您检查:.hgsubstate 文件中提到的版本。该文件具有结构

subrepo-revision-ID subrepo-mount-point

subrepo-revision-ID 是 Mercurial 子存​​储库的变更集哈希。您可以通过以下方式更新此文件

 cd main/subrepo
 hg update 1.0
 cd ..
 hg commit -m 'Updated subrepo in main'

每次您在外部存储库中进行提交时,所有子存储库的确切修订版都会写入外部存储库的.hgsubstate 文件中。这就是版本控制起作用的原因:当您在外部存储库中执行 hg update 时,.hgsubstate 文件会更改,Mercurial 将确保签出相应版本的子存储库。

我认为您正在尝试创建一个伞式存储库,该存储库可以自动跟踪给定分支的一堆子存储库。 Mercurial 无法做到这一点:它坚持认为,当您克隆主存储库时,您将获得一个工作副本,其中包含处于已知状态的子存储库,即在主存储库中提交 的状态。

如果你安装了我的onsub extension,那么你可以像这样更新和提交所有子存储库:

hg onsub hg update
# run test!
hg commit -m 'Updated all subrepos to their tip'

然后您可以构建此修订并将其发送给您的客户——如果他们返回一个错误和主存储库的变更集哈希,那么您知道您可以准确地重新创建构建。如果 Mercurial 没有在 .hgsubstate 文件中记录子存储库状态,情况就不会如此。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2012-07-04
    相关资源
    最近更新 更多