view hgext3rd/__init__.py @ 49032:3f6ef67e7a60

revert: ask user to confirm before tracking new file when interactive If interactively reverting from a commit with `hg revert -i -r`, we would unconditionally add files from that commit that are not already tracked in the working copy. We have prompts for adding back files removed in the working copy, but that's specific to such files and does not apply to adding files from another revision. Differential Revision: https://phab.mercurial-scm.org/D12416
author Martin von Zweigbergk <martinvonz@google.com>
date Mon, 28 Mar 2022 10:43:10 -0700
parents 6000f5b25c9b
children f4733654f144
line wrap: on
line source

# name space package to host third party extensions
import pkgutil

__path__ = pkgutil.extend_path(__path__, __name__)