├── .gitignore ├── .python-version ├── README.md ├── assets └── git-diff.jpeg ├── pyproject.toml └── src └── smart_commit_msg └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariG23498/smart-commit/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariG23498/smart-commit/HEAD/README.md -------------------------------------------------------------------------------- /assets/git-diff.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariG23498/smart-commit/HEAD/assets/git-diff.jpeg -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariG23498/smart-commit/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/smart_commit_msg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariG23498/smart-commit/HEAD/src/smart_commit_msg/__init__.py --------------------------------------------------------------------------------