Metadata-Version: 1.0
Name: ghsync
Version: 0.3.0
Summary: GitHub Syncer. Clones or Pulls all GitHub repos.
Home-page: https://github.com/kennethreitz/ghsync
Author: Kenneth Reitz
Author-email: me@kennethreitz.com
License: ISC
Description: ghsync: GitHub Repo Syncer
        ==========================
        
        This script uses the GitHub API to get a list of all forked, mirrored, public, and 
        private repos in your GitHub account. If the repo already exists locally, it will 
        update it via git-pull. Otherwise, it will properly clone the repo.
        
        It will organize your repos into the following directory structure: ::
        
            + repos
            \ +-- forks    (public fork repos)
              +-- mirrors  (public mirror repos)
              +-- private  (private repos)
              +-- public   (public repos)
              +-- watched  (public watched repos)
        
        
        Requires Ask Solem's github2 (http://pypi.python.org/pypi/github2).
        
        Inspired by Gisty (http://github.com/swdyh/gisty).
        
        
        Install
        -------
        
        To install ghsync, simply run: ::
        
            $ pip install ghsync
            
        The command ``ghsync`` will then be available to you from the command line. Beware, unless you set the ``GHSYNC_DIR`` environment variable, it will add all the repos to your current directory.::
        
            $ export GHSYNC_DIR='~/repos/'
        
        
        Contribute
        ----------
        
        If you'd like to contribute, simply fork `the repository`_, commit your changes to the **develop** branch (or branch off of it), and send a pull request.
        
        
        .. _`the repository`: http://github.com/kennethreitz/ghsync
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
