hgext/__init__.py
author Phil Cohen <phillco@fb.com>
Fri, 08 Dec 2017 15:27:58 -0800
changeset 35341 03bec089e105
parent 28450 155e3308289c
child 43076 2372284d9457
permissions -rw-r--r--
rebase: disable `inmemory` if the rebaseset contains the working copy As described in the comment, rebasing the working copy parent with in-memory merge, and then updating to the new commit, isn't much faster because of the extra overhead of uppdating. Best to leave it off in that case. This commit makes deploying in-memory merge via an extension easier, because you can just set `inmemory=True` based on some config or probability, and this will turn off the cases where it's not desired. Differential Revision: https://phab.mercurial-scm.org/D1616

from __future__ import absolute_import
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)