hgext3rd/__init__.py
author Pulkit Goyal <7895pulkit@gmail.com>
Fri, 16 Mar 2018 11:46:47 +0530
changeset 3547 78abffad8626
parent 2020 143c8e4dc22d
permissions -rw-r--r--
next: prompt user to choose a children in case of ambiguity This patch adds functionality to prompt user and ask the children to which next should move to incase of multiple childrens. This is a very nice UI because otherwise user has to lookup changeset hash, and then manually do `hg update` to that. In this case we show hash and description so user can choose which one to update easily. It is using the interactive revision choosing functionality added in a previous patch.

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