2010-04-19 120 views
0

在git中,有一个命令'git bundle',它将git存储库捆绑到一个大文件中。 是否有'hg'的等效命令?hg git命令包

+1

在你问这个问题之前你做过什么研究?我在问这个,因为我很困惑你为什么在命名相同的时候没有在Mercurial中找到命令?如果您可以编写[email protected]并指出我们需要改进文档的位置,这将对我们有所帮助。谢谢。 – 2010-05-26 10:59:31

回答

4

Hg支持相同的命令。以下是对它的帮助:

 
U:\>hg help bundle 
hg bundle [-f] [-t TYPE] [-a] [-r REV]... [--base REV]... FILE [DEST] 

create a changegroup file 

    Generate a compressed changegroup file collecting changesets not known to 
    be in another repository. 

    If you omit the destination repository, then hg assumes the destination 
    will have all the nodes you specify with --base parameters. To create a 
    bundle containing all changesets, use -a/--all (or --base null). 

    You can change compression method with the -t/--type option. The available 
    compression methods are: none, bzip2, and gzip (by default, bundles are 
    compressed using bzip2). 

    The bundle file can then be transferred using conventional means and 
    applied to another repository with the unbundle or pull command. This is 
    useful when direct push and pull are not available or when exporting an 
    entire repository is undesirable. 

    Applying bundles preserves all changeset contents including permissions, 
    copy/rename information, and revision history. 

options: 

-f --force  run even when the destination is unrelated 
-r --rev  a changeset intended to be added to the destination 
-b --branch  a specific branch you would like to bundle 
    --base  a base changeset assumed to be available at the destination 
-a --all  bundle all changesets in the repository 
-t --type  bundle compression type to use (default: bzip2) 
-e --ssh  specify ssh command to use 
    --remotecmd specify hg command to run on the remote side 

反向操作的命令是hg unbundle。

+1

以下是完整文档中的链接。 http://www.selenic.com/mercurial/hg.1.html#bundle – 2010-04-19 20:15:59

+1

是的,它在Mercurial中有相同的名字...这不是巧合,因为Git从Mercurial获得了它的包命令:-) – 2010-05-26 11:00:49