diff --git a/.githooks/prepare-commit-msg b/.githooks/prepare-commit-msg index c8ab2e022..db3f57258 100755 --- a/.githooks/prepare-commit-msg +++ b/.githooks/prepare-commit-msg @@ -49,6 +49,12 @@ case "$lcp" in device/*/*) prefix="$(echo "$lcp" | cut -d/ -f3)" ;; + docs/*.adoc) + prefix="docs/$(basename $lcp .adoc)" + ;; + docs/*) + prefix="docs" + ;; device/*) # Multiple packages touched for same device category. More # logic could be added to detect if they all belong to same diff --git a/README.md b/README.md index 2f37d4ce5..25251b45d 100644 --- a/README.md +++ b/README.md @@ -12,3 +12,12 @@ Helpful resources: * [Alpine Linux aports](https://gitlab.alpinelinux.org/alpine/aports/) * [Alpine Linux package search](https://pkgs.alpinelinux.org/packages) * [postmarketOS package search](https://pkgs.postmarketos.org/packages) + +## Git Hooks + +You can find some useful git hooks in the `.githooks` directory. +To use them, run the following command after cloning this repository: + +```sh +git config --local core.hooksPath .githooks +```