4 lines
135 B
Bash
Executable File
4 lines
135 B
Bash
Executable File
#!/bin/bash
|
|
git config core.hooksPath .githooks
|
|
chmod +x .githooks/*
|
|
git config alias.add '!f() { npm run format && git add "$@"; }; f' |