Mercurial > hg-stable
diff hgext/strip.py @ 41803:8c42b4a3d447
strip: introduce a soft strip option
This is the first user-accessible way to use the archived phase introduced in
4.8. This implements a feature discussed during the Stockholm sprint, using
the archived phase for hiding changesets.
The archived phase behaves exactly as stripping: changesets are no longer
visible, but pulling/unbundling them will make then reappear. The only notable
difference is that unlike hard stripping, soft stripping does not affect
obsmarkers.
The next changeset will make use of the archived phase for history rewriting
command. However, having a way to manually trigger the feature first seems a
necessary step before exposing users to this phase; there is a way to
un-archived changesets (unbundling), so there must be a way to archive them
again.
Adding a flag to strip is a good way to provide access to the feature without
taking a too big risk on the final UI we want. The flag is experimental so it
won't be exposed by default.
Using the archived phase is faster and less traumatic for the repository than
actually stripping changesets.
author | Boris Feld <boris.feld@octobus.net> |
---|---|
date | Tue, 16 Oct 2018 15:48:00 +0200 |
parents | 0bd56c291359 |
children | 1acaa9f37377 |
line wrap: on
line diff
--- a/hgext/strip.py Mon Feb 25 16:49:01 2019 +0300 +++ b/hgext/strip.py Tue Oct 16 15:48:00 2018 +0200 @@ -76,7 +76,8 @@ return unode -def strip(ui, repo, revs, update=True, backup=True, force=None, bookmarks=None): +def strip(ui, repo, revs, update=True, backup=True, force=None, bookmarks=None, + soft=False): with repo.wlock(), repo.lock(): if update: @@ -85,7 +86,10 @@ hg.clean(repo, urev) repo.dirstate.write(repo.currenttransaction()) - repair.strip(ui, repo, revs, backup) + if soft: + repair.softstrip(ui, repo, revs, backup) + else: + repair.strip(ui, repo, revs, backup) repomarks = repo._bookmarks if bookmarks: @@ -110,7 +114,10 @@ ('k', 'keep', None, _("do not modify working directory during " "strip")), ('B', 'bookmark', [], _("remove revs only reachable from given" - " bookmark"), _('BOOKMARK'))], + " bookmark"), _('BOOKMARK')), + ('', 'soft', None, + _("simply drop changesets from visible history (EXPERIMENTAL)")), + ], _('hg strip [-k] [-f] [-B bookmark] [-r] REV...'), helpcategory=command.CATEGORY_MAINTENANCE) def stripcmd(ui, repo, *revs, **opts): @@ -235,6 +242,7 @@ strip(ui, repo, revs, backup=backup, update=update, - force=opts.get('force'), bookmarks=bookmarks) + force=opts.get('force'), bookmarks=bookmarks, + soft=opts['soft']) return 0