本文介绍了如何从特定变更集克隆Mercurial存储库?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何从特定变更集中克隆Mercurial存储库?
How can you clone a Mercurial repository as of a specific changeset?
即,如果主仓库具有变更集1-10,那么如何获取变更集#7中存在的源副本?
Ie: If the master repo has changesets 1-10, how can get a copy of the source as it existed in changeset #7?
推荐答案
此命令告诉您使用-r/--rev开关:
This command tells to use -r / --rev switch:
hg help clone
所以:
hg clone -r 7
这篇关于如何从特定变更集克隆Mercurial存储库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!