11 lines
202 B
Markdown
11 lines
202 B
Markdown
# dots
|
|
## build
|
|
### `keep-sorted` pre-commit hook
|
|
copy the pre-commit hook to `.git/hooks`
|
|
```bash
|
|
cp .pre-commit .git/hooks/pre-commit
|
|
```
|
|
make it executable
|
|
```bash
|
|
chmod +x .git/hooks/pre-commit
|
|
```
|