├── docs ├── .gitkeep └── images │ └── 7_snivy_cover.png ├── README.md └── .gitignore /docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/images/7_snivy_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightDataScience/platform-git-flow/master/docs/images/7_snivy_cover.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Snivy](./docs/images/7_snivy_cover.png) 2 | 3 | **TODO:** 4 | - Create `git login` module 5 | - Create `git createpr` module 6 | - Package this repository as a Python package -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .env 3 | .flaskenv 4 | *.pyc 5 | *.pyo 6 | env/ 7 | env* 8 | dist/ 9 | build/ 10 | *.egg 11 | *.egg-info/ 12 | _mailinglist 13 | .tox/ 14 | .cache/ 15 | .pytest_cache/ 16 | .idea/ 17 | docs/_build/ 18 | 19 | # Coverage reports 20 | htmlcov/ 21 | .coverage 22 | .coverage.* 23 | *,cover --------------------------------------------------------------------------------