diff -r 9cc55b743713 -r 57875cf423c9 mercurial/rewriteutil.py --- a/mercurial/rewriteutil.py Fri Oct 04 15:53:45 2019 -0400 +++ b/mercurial/rewriteutil.py Sat Oct 05 10:29:34 2019 -0400 @@ -16,6 +16,7 @@ revset, ) + def precheck(repo, revs, action='rewrite'): """check if revs can be rewritten action is used to control the error message. @@ -23,7 +24,7 @@ Make sure this function is called after taking the lock. """ if node.nullrev in revs: - msg = _("cannot %s null changeset") % (action) + msg = _("cannot %s null changeset") % action hint = _("no changeset checked out") raise error.Abort(msg, hint=hint) @@ -32,7 +33,7 @@ publicrevs = repo.revs('%ld and public()', revs) if publicrevs: - msg = _("cannot %s public changesets") % (action) + msg = _("cannot %s public changesets") % action hint = _("see 'hg help phases' for details") raise error.Abort(msg, hint=hint) @@ -40,6 +41,7 @@ if newunstable: raise error.Abort(_("cannot %s changeset with children") % action) + def disallowednewunstable(repo, revs): """Checks whether editing the revs will create new unstable changesets and are we allowed to create them.