├── .gitignore ├── LICENSE ├── README.rst ├── igcommit-receive ├── igcommit ├── __init__.py ├── base_check.py ├── commit_checks.py ├── commit_list_checks.py ├── config.py ├── file_checks.py ├── git.py ├── prereceive.py └── utils.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/igcommit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/igcommit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/igcommit/HEAD/README.rst -------------------------------------------------------------------------------- /igcommit-receive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/igcommit/HEAD/igcommit-receive -------------------------------------------------------------------------------- /igcommit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/igcommit/HEAD/igcommit/__init__.py -------------------------------------------------------------------------------- /igcommit/base_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/igcommit/HEAD/igcommit/base_check.py -------------------------------------------------------------------------------- /igcommit/commit_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/igcommit/HEAD/igcommit/commit_checks.py -------------------------------------------------------------------------------- /igcommit/commit_list_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/igcommit/HEAD/igcommit/commit_list_checks.py -------------------------------------------------------------------------------- /igcommit/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/igcommit/HEAD/igcommit/config.py -------------------------------------------------------------------------------- /igcommit/file_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/igcommit/HEAD/igcommit/file_checks.py -------------------------------------------------------------------------------- /igcommit/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/igcommit/HEAD/igcommit/git.py -------------------------------------------------------------------------------- /igcommit/prereceive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/igcommit/HEAD/igcommit/prereceive.py -------------------------------------------------------------------------------- /igcommit/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/igcommit/HEAD/igcommit/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/igcommit/HEAD/setup.py --------------------------------------------------------------------------------