├── .env.example ├── .gitattributes ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── autocommit ├── __init__.py ├── commit.py └── llm.py ├── null ├── pyproject.toml ├── requirements.txt └── scan_repo.py /.env.example: -------------------------------------------------------------------------------- 1 | OPENAI_KEY= 2 | GIT_REPO_URL=https://github.com/abi/codeGPT.git 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi/autocommit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi/autocommit/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi/autocommit/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi/autocommit/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi/autocommit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi/autocommit/HEAD/README.md -------------------------------------------------------------------------------- /autocommit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autocommit/commit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi/autocommit/HEAD/autocommit/commit.py -------------------------------------------------------------------------------- /autocommit/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi/autocommit/HEAD/autocommit/llm.py -------------------------------------------------------------------------------- /null: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi/autocommit/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi/autocommit/HEAD/requirements.txt -------------------------------------------------------------------------------- /scan_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi/autocommit/HEAD/scan_repo.py --------------------------------------------------------------------------------