Metadata-Version: 2.1
Name: git-fortune
Version: 0.0.2
Summary: fortune-like git tips
Home-page: https://github.com/sirosen/git-fortune
Author: Stephen Rosen
Author-email: sirosen@uchicago.edu
License: UNKNOWN
Keywords: fortune,git
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Provides-Extra: development
Requires-Dist: pytest (<5,>=4.3.1) ; extra == 'development'
Requires-Dist: pytest-cov (<3,>=2.6.1) ; extra == 'development'
Requires-Dist: flake8 (<4.0,>=3.7.7) ; extra == 'development'
Requires-Dist: isort (<5.0,>=4.3.15) ; extra == 'development'
Requires-Dist: mock (==2.0.0) ; (python_version < "3.6") and extra == 'development'
Requires-Dist: flake8-bugbear (==18.8.0) ; (python_version >= "3.5") and extra == 'development'
Requires-Dist: black (==19.3b) ; (python_version >= "3.6") and extra == 'development'

.. image:: https://travis-ci.org/sirosen/git-fortune.svg?branch=master
    :alt: build status
    :target: https://travis-ci.org/sirosen/git-fortune

.. image:: https://img.shields.io/pypi/v/git-fortune.svg
    :alt: Latest Released Version
    :target: https://pypi.org/project/git-fortune

.. image:: https://img.shields.io/pypi/pyversions/git-fortune.svg
    :alt: Supported Python Versions
    :target: https://pypi.org/project/git-fortune

.. image:: https://img.shields.io/badge/License-Apache%202.0-blue.svg
    :alt: License
    :target: https://opensource.org/licenses/Apache-2.0


git-fortune
===========

A `fortune`-like program which shows `git` tips.

Installation
------------

Install via `pip install git-fortune`.

I recommend installing with `--user` and then adding the install location to
your PATH. For example::

    pip install --user git-fortune
    echo 'export PATH="$PATH:$HOME/.local/bin"' >> "$HOME/.bashrc"  # or equivalent

Usage
-----

Get a random git tip::

    git-fortune

or::

    git fortune


Testing, Development, and Contributing
--------------------------------------

Go to the
`CONTRIBUTING <https://github.com/sirosen/git-fortune/blob/master/CONTRIBUTING.adoc>`_
guide for detail.


