# HG changeset patch # User Henrik Stuart # Date 2009-06-23 19:49:49 # Node ID d403cf4eb32d207da16128e08a11391d9e08dd9b # Parent b9a8b616521dfb742478410351d3387b0ce975cb help: describe bundle compression methods (issue1523) diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -482,9 +482,11 @@ def bundle(ui, repo, fname, dest=None, * If no destination repository is specified the destination is assumed to have all the nodes specified by one or more --base parameters. To create a bundle containing all changesets, use - -a/--all (or --base null). To change the compression method - applied, use the -t/--type option (by default, bundles are - compressed using bz2). + -a/--all (or --base null). + + To change the compression method applied, use 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