├── .github ├── .deploy │ └── bump.sh └── workflows │ └── release.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── PKGBUILD ├── README.md ├── install.sh └── src └── main.rs /.github/.deploy/bump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/auto-commit/HEAD/.github/.deploy/bump.sh -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/auto-commit/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/auto-commit/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/auto-commit/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/auto-commit/HEAD/LICENSE -------------------------------------------------------------------------------- /PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/auto-commit/HEAD/PKGBUILD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/auto-commit/HEAD/README.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/auto-commit/HEAD/install.sh -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/auto-commit/HEAD/src/main.rs --------------------------------------------------------------------------------