# HG changeset patch
# User Mads Kiilerich <m...@kiilerich.com>
# Date 1489362106 25200
#      Sun Mar 12 16:41:46 2017 -0700
# Node ID 42083ac9c3ed1b3be205e0f3a621787071587ae5
# Parent  1c3352d7eaf24533ad52d4b8a024211e9189fb0b
merge: check current wc branch for 'nothing to merge', not its p1

The working directory will usually be clean or very clean, and wc will usually
have the same branch as its parent. This change will thus usually not make any
difference and is done as a separate change to show that. It will be used in a
later change.

diff --git a/mercurial/merge.py b/mercurial/merge.py
--- a/mercurial/merge.py
+++ b/mercurial/merge.py
@@ -1544,7 +1544,7 @@ def update(repo, node, branchmerge, forc
                 raise error.Abort(_("merging with a working directory ancestor"
                                    " has no effect"))
             elif pas == [p1]:
-                if not mergeancestor and p1.branch() == p2.branch():
+                if not mergeancestor and wc.branch() == p2.branch():
                     raise error.Abort(_("nothing to merge"),
                                      hint=_("use 'hg update' "
                                             "or check 'hg heads'"))
_______________________________________________
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel

Reply via email to