diff -r 79750d781928 -r bbd7172bc3df mercurial/copies.py --- a/mercurial/copies.py Wed Nov 13 20:33:22 2019 +0100 +++ b/mercurial/copies.py Wed Nov 13 20:45:34 2019 +0100 @@ -67,7 +67,7 @@ """chain two sets of copies 'a' and 'b'""" t = a.copy() for k, v in pycompat.iteritems(b): - t[k] = t.get(v, v) + t[k] = a.get(v, v) return t