开发者

hg command for git bundle

开发者 https://www.devze.com 2022-12-27 05:11 出处:网络
In git, there is a command \'git bundle\' which bundles a git repository into 1 b开发者_运维问答ig file.

In git, there is a command 'git bundle' which bundles a git repository into 1 b开发者_运维问答ig file. Is there the equivalent command for 'hg'?


Hg supports the same command. Here's the help for it:

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

The command for the reverse operation is hg unbundle.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号