Metadata-Version: 2.0
Name: gclone
Version: 1.0.3
Summary: Clone github repositories by name or keyword.
Home-page: https://github.com/mtbrock/gclone
Author: Matthew Brock
Author-email: mtbrock1@gmail.com
License: UNKNOWN
Description-Content-Type: UNKNOWN
Keywords: git clone gclone pygithub
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: pygithub

gclone
======
Python 3 program for cloning github repositories by name or keyword.

Install
-------
``pip install --user gclone``

Ensure script location is in your ``PATH``. Usually ``~/.local/bin``.

Usage
-----

Clone by repo name::

  $ gclone mtbrock/gclone

Clone by partial name or keyword. gclone provides a list of github
repositories to choose from, sorted by 'stars'::

  $ gclone tmux

Pass options like you would to ``git clone``::

  $ gclone --branch my-branch my-repo /path/to/my-dir

Specify sort, order, or limit::

  $ gclone --sort='forks' --order='desc' --limit=20 keyword


