├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .travis.jml ├── LICENSE.txt ├── README.md ├── giter.gif ├── setup.py └── src ├── __init__.py ├── colors.py └── giter.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdvgt/Giter/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdvgt/Giter/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdvgt/Giter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.jml: -------------------------------------------------------------------------------- 1 | language: python 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdvgt/Giter/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdvgt/Giter/HEAD/README.md -------------------------------------------------------------------------------- /giter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdvgt/Giter/HEAD/giter.gif -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdvgt/Giter/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdvgt/Giter/HEAD/src/colors.py -------------------------------------------------------------------------------- /src/giter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdvgt/Giter/HEAD/src/giter.py --------------------------------------------------------------------------------