#pragma section-numbers 2 = Importfs Extension = Imports a set of files from a given file-system into a Mercurial repository as a changeset. <> == Status == '''This extension is not distributed with Mercurial.''' ''Author: '' ''[[MarkusZapke|Markus Zapke-GrĂ¼ndemann]]'' Repository: ''https://bitbucket.org/keimlink/hg-importfs'' Python Package Index: ''http://pypi.python.org/pypi/hg-importfs'' == Overview == Please read the README inside the repository for more information and examples. == Installation == The easiest way is to install the importfs extension is to use pip: {{{ $ pip install hg-importfs }}} Using easy_install instead of pip is also possible: {{{ $ easy_install hg-importfs }}} Instead of installing the Python package you can also clone the repository: {{{ $ hg clone https://bitbucket.org/keimlink/hg-importfs }}} == Configuration == Configure your .hgrc to enable the extension by adding following lines: {{{ [extensions] importfs= }}} ---- CategoryExtensionsByOthers