# HG changeset patch # User Thomas Arendsen Hein # Date 1161789639 -7200 # Node ID aa8f086cb14161667f230e7565464456f9c0799d # Parent e1421a77427e576565caa804589076b84679b655 Corrected help text for bundle. diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -806,20 +806,19 @@ def branches(ui, repo): def bundle(ui, repo, fname, dest=None, **opts): """create a changegroup file - Generate a compressed changegroup file collecting changesets. - not found in the other repository. - - If no destination repository is specified the destination is - assumed to have all the node specified by --base. - - This file can then be transferred using conventional means and - applied to another repository with the unbundle command. This is - useful when native push and pull are not available or when - exporting an entire repository is undesirable. The standard file - extension is ".hg". - - Unlike import/export, this exactly preserves all changeset - contents including permissions, rename data, and revision history. + Generate a compressed changegroup file collecting changesets not + found in the other repository. + + If no destination repository is specified the destination is assumed + to have all the nodes specified by one or more --base parameters. + + 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. """ revs = opts.get('rev') or None if revs: