mirror of
https://github.com/natelandau/shell-scripting-templates.git
synced 2025-11-16 08:53:47 -05:00
9 lines
342 B
Markdown
9 lines
342 B
Markdown
This folder contains git hooks which will be executed on the client side before certain git actions are completed.
|
|
|
|
## Usage
|
|
On each local system these files must be symlinked into `repo/.git/hooks` directory.
|
|
|
|
```bash
|
|
ln -s "$(git rev-parse --show-toplevel)/.hooks/pre-commit.sh" "$(git rev-parse --show-toplevel)/.git/hooks/pre-commit"
|
|
```
|