# HG changeset patch # User Yuya Nishihara # Date 2019-01-12 08:47:46 # Node ID 25cec00b333c333d433c3aed180b2e0de6fef2b3 # Parent 6acbe86c6490d816f150ab710c52780924c876c4 help: document rewrite.backup-bundle option diff --git a/hgext/histedit.py b/hgext/histedit.py --- a/hgext/histedit.py +++ b/hgext/histedit.py @@ -1680,7 +1680,6 @@ def _histedit(ui, repo, state, *freeargs fm.startitem() goal = _getgoal(opts) revs = opts.get('rev', []) - # experimental config: rewrite.backup-bundle nobackup = not ui.configbool('rewrite', 'backup-bundle') rules = opts.get('commands', '') state.keep = opts.get('keep', False) diff --git a/mercurial/help/config.txt b/mercurial/help/config.txt --- a/mercurial/help/config.txt +++ b/mercurial/help/config.txt @@ -1812,6 +1812,9 @@ Alias definitions for revsets. See :hg:` ``rewrite`` ----------- +``backup-bundle`` + Whether to save stripped changesets to a bundle file. (default: True) + ``update-timestamp`` If true, updates the date and time of the changeset to current. It is only applicable for hg amend in current version.