6 releases (3 breaking)
0.4.2 | Aug 31, 2021 |
---|---|
0.4.1 | Aug 23, 2021 |
0.3.0 | Aug 4, 2021 |
0.2.0 | Aug 2, 2021 |
0.1.0 | Aug 1, 2021 |
#2185 in Development tools
65 downloads per month
19KB
398 lines
git-hooks-dispatch
Run hooks only in a directory where files are changed. Useful for monorepo.
Install
cargo install git-hooks-dispatch
Setting up
Set up hooks you want as the following:
Hook file (e.g. .git/hooks/pre-commit
)
#!/bin/sh
git-hooks-dispatch $(basename $0) -- "$@"
Make sure the file has permission to execute.
Then, in the child directories, you can set up hooks as they are in the project root directory.
For example:
./sub-project1/git-hooks/pre-commit
#!/bin/sh
npm run lint-staged
./sub-project2/git-hooks/pre-commit
#!/bin/sh
mvn antrun:run@ktlint-format
Hooks are executed recursively
In the below example, if ./foo/bar/B
is changed, pre-commit
hooks are executed recursively in the following order:
./foo/bar/git-hooks/pre-commit
./foo/git-hooks/pre-commit
.
├── .git
│ └── hooks
│ └── pre-commit
└── foo
├── A
├── git-hooks
│ └── pre-commit
└── bar
├── B
└── git-hooks
└── pre-commit
Hooks dir name
git-hooks-dispatch
searches a hook dir which name is hooks-dir
or .hooks-dir
by default. You can change it by --hooks-dir
option.
Manage hooks in your Git repository (recommended)
git config core.hooksPath git-hooks
Print logs
Setting RUST_LOG
environment variable turns logging on.
RUST_LOG=debug git commit ...
Dependencies
~14–24MB
~398K SLoC