mercurial/__init__.py
author Martin von Zweigbergk <martinvonz@google.com>
Wed, 03 Dec 2014 10:56:07 -0800
changeset 23475 67f1d68861fb
parent 0 9117c6561b0b
child 27220 4374d819ccd5
permissions -rw-r--r--
merge: don't ignore conflicting file in remote renamed directory When the remote side has renamed a directory from a/ to b/ and added a file b/c in it, and the local side has added a file a/c, we end up moving a/c to b/c without considering the remote version of b/c. Add a check for this case and use the merge ('m') action in this case instead of the directory rename ('dm') action.