Mercurial > public > mercurial-scm > hg-stable
diff mercurial/merge.py @ 42820:7b80ad5af239
merge: hint about using `hg resolve` for resolving conflicts
This was suggested by one of our users at Google. Makes sense to me.
Differential Revision: https://phab.mercurial-scm.org/D6755
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Wed, 21 Aug 2019 13:14:39 -0700 |
parents | d29db0a0c4eb |
children | f059d6ffcdf0 |
line wrap: on
line diff
--- a/mercurial/merge.py Sat Aug 17 18:28:55 2019 +0900 +++ b/mercurial/merge.py Wed Aug 21 13:14:39 2019 -0700 @@ -2025,7 +2025,8 @@ raise error.Abort(_("outstanding uncommitted merge")) ms = mergestate.read(repo) if list(ms.unresolved()): - raise error.Abort(_("outstanding merge conflicts")) + raise error.Abort(_("outstanding merge conflicts"), + hint=_("use 'hg resolve' to resolve")) if branchmerge: if pas == [p2]: raise error.Abort(_("merging with a working directory ancestor"