hgext/__init__.py
author Siddharth Agarwal <sid0@fb.com>
Mon, 25 Apr 2016 16:24:42 -0700
changeset 1686 474db2d60202
parent 1619 5ef77a1d975c
permissions -rw-r--r--
metaedit: add support for folding commits while editing their metadata This also allows us to accept multiple commits without dealing with the thorny algorithmic and UI issues of editing multiple commits at once. Crucially, it is different from 'hg fold --exact' in that it also allows 'folding' a single commit and rewriting its metadata. This is really useful to have as a single logical operation, for example while preparing a series of multiple local changesets that will need to be pushed as a single changeset.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1619
5ef77a1d975c hgext: turn 'hgext' into a namespace package
Pierre-Yves David <pierre-yves.david@fb.com>
parents: 519
diff changeset
     1
from __future__ import absolute_import
5ef77a1d975c hgext: turn 'hgext' into a namespace package
Pierre-Yves David <pierre-yves.david@fb.com>
parents: 519
diff changeset
     2
import pkgutil
5ef77a1d975c hgext: turn 'hgext' into a namespace package
Pierre-Yves David <pierre-yves.david@fb.com>
parents: 519
diff changeset
     3
__path__ = pkgutil.extend_path(__path__, __name__)
5ef77a1d975c hgext: turn 'hgext' into a namespace package
Pierre-Yves David <pierre-yves.david@fb.com>
parents: 519
diff changeset
     4