Create-Shortcut

This commit is contained in:
2022-01-31 14:57:15 -07:00
parent ca79ea6114
commit 32462802f0
7 changed files with 85 additions and 30 deletions

22
Git/pre-commit Normal file
View File

@ -0,0 +1,22 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
## husky task runner examples -------------------
## Note : for local installation use 'dotnet' prefix. e.g. 'dotnet husky'
## run all tasks
#husky run
### run all tasks with group: 'group-name'
#husky run --group group-name
## run task with name: 'task-name'
#husky run --name task-name
## pass hook arguments to task
#husky run --args "$1" "$2"
## or put your custom commands -------------------
#echo 'Husky.Net is awesome!'
dotnet husky run --group "pre-commit"