diff -r 7e503eff3c76 -r f1162b125991 hgext/histedit.py --- a/hgext/histedit.py Tue Jan 18 13:23:49 2022 -0800 +++ b/hgext/histedit.py Fri Jan 21 13:48:18 2022 -0800 @@ -667,7 +667,15 @@ repo.ui.setconfig( b'ui', b'forcemerge', opts.get(b'tool', b''), b'histedit' ) - stats = mergemod.graft(repo, ctx, labels=[b'local', b'histedit']) + stats = mergemod.graft( + repo, + ctx, + labels=[ + b'already edited', + b'current change', + b'parent of current change', + ], + ) finally: repo.ui.setconfig(b'ui', b'forcemerge', b'', b'histedit') return stats