Submitting Code

Follow the procedure below when submitting code.

Standard GitHub Workflow

Start off my forking [1] pyhole to your account on GitHub. From here you can make your changes:

git clone https://github.com/jk0/pyhole.git && cd pyhole

...make changes...

python setup.py flake8
python setup.py test

git commit -a -m "Detailed commit message."
git push origin HEAD

When done, open a Pull Request [2] on GitHub.

[1]https://help.github.com/articles/fork-a-repo/
[2]https://help.github.com/articles/using-pull-requests/