git_remote_helpers / __init__.pyon commit Add 'contrib/subtree/' from commit 'd3a04e06c77d57978bb5230361c64946232cc346' (634392b)
   1#!/usr/bin/env python
   2
   3"""Support library package for git remote helpers.
   4
   5Git remote helpers are helper commands that interfaces with a non-git
   6repository to provide automatic import of non-git history into a Git
   7repository.
   8
   9This package provides the support library needed by these helpers..
  10The following modules are included:
  11
  12- git.git - Interaction with Git repositories
  13
  14- util - General utility functionality use by the other modules in
  15         this package, and also used directly by the helpers.
  16"""