hgext3rd/__init__.py
author Valentin Gatien-Baron <valentin.gatienbaron@gmail.com>
Sun, 26 Aug 2018 16:42:28 -0400
changeset 39393 56469d475341
parent 28541 4b81487a01d4
child 43076 2372284d9457
permissions -rw-r--r--
resolve: add config to make hg resolve not re-merge by default Before this, calling 'hg resolve' with neither -m, -u or -l will re-merge. This is highly error prone (it's easy to forget to forget a -m), and pretty bad when it happens (many people have no idea 'hg resolve' can re-merge, and end up redoing the work of resolving all the conflicts, because they have no idea there was a backup of their work). Differential Revision: https://phab.mercurial-scm.org/D4379

# name space package to host third party extensions
from __future__ import absolute_import
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)