use*_*784 3 mercurial branch subrepos
我对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"
Run Code Online (Sandbox Code Playgroud)
到现在为止还挺好.如果我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
Run Code Online (Sandbox Code Playgroud)
这就是问题发生的地方.当我执行时,如何更改主仓库以获取默认的当前版本,或最终获得子版本的1.0分支hg clone
?
我会说这很有效.
# 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
Run Code Online (Sandbox Code Playgroud)
但当我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
Run Code Online (Sandbox Code Playgroud)
有没有办法实现我想做的事情?
谢谢.
快速更新:我发布问题后一分钟,我找到了一个我以前从未见过的答案.在那里,建议使用以下语法
http://[user[:pass]@]host[:port]/[path][#revision]
Run Code Online (Sandbox Code Playgroud)
用来#branchname
代替#revision
.因此,在我的示例中,以下内容应该有效(对于分支1.0):
echo subrepo = ../subrepo#1.0 > .hgsub
Run Code Online (Sandbox Code Playgroud)
但当我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
Run Code Online (Sandbox Code Playgroud)
我正在研究Ubuntu 10.04,mercurial 1.4.3-1.建议?
- 迪伦
这条线错了:
echo subrepo = ../subrepo -r default > .hgsub
Run Code Online (Sandbox Code Playgroud)
您无法在.hgsub
文件中为克隆操作添加额外选项.这样做也是错误的
echo subrepo = ../subrepo#1.0 > .hgsub
该.hgsub
文件具有以下结构:
subrepo-mount-point = subrepo-source-URL
Run Code Online (Sandbox Code Playgroud)
就是这样.Mercurial然后将出去并使用它subrepo-source-URL
来制作subrepo的克隆并将subrepo克隆subrepo-mount-point
放在外部repo中.
接下来的问题是Mercurial应该为您检查的子修订版本:.hgsubstate
文件中提到的修订版本.这个文件有结构
subrepo-revision-ID subrepo-mount-point
Run Code Online (Sandbox Code Playgroud)
其中subrepo-revision-ID
是Mercurial子版本的变更集哈希.您可以通过执行更新此文件
cd main/subrepo
hg update 1.0
cd ..
hg commit -m 'Updated subrepo in main'
Run Code Online (Sandbox Code Playgroud)
每次在外部存储库中进行提交时,所有子目录的确切修订都将写入.hgsubstate
外部存储库中的文件中.这是使版本控制工作的原因:当您hg update
在外部存储库中执行操作时,.hgsubstate
文件将更改,Mercurial将确保检出子版本的相应版本.
我认为你正在尝试建立一个伞形存储库,它可以自动跟踪一堆subrepos的给定分支.你不能用水银做到这一点:它坚持认为,当你克隆的主要仓库,那么你将得到包含已知状态,即是国家subrepos的工作副本致力于在主存储库中.
如果您安装我的onsub扩展,那么您可以更新并提交所有子目录,如下所示:
hg onsub hg update
# run test!
hg commit -m 'Updated all subrepos to their tip'
Run Code Online (Sandbox Code Playgroud)
然后,您可以构建此修订并将其发送给您的客户 - 如果他们返回主存储库的错误和更改集哈希,那么您就知道可以完全重新创建构建.如果Mercurial没有在.hgsubstate
文件中记录子存储库状态,那就不是这种情况.
归档时间: |
|
查看次数: |
2734 次 |
最近记录: |