Introduction
Git Hooks are scripts that are automatically executed by Git at specific points in the Git workflow. They allow you to enforce code quality and consistency in your project.
Tutorial
Let’s get started!
-
Install Husky
pnpm install husky --save-dev
-
Create a Husky Configuration File
npx husky init
-
Add a Pre-Commit Hook
npx husky add .husky/pre-commit "pnpm lint"
This will add a pre-commit hook that will run
pnpm lint
before each commit. -
Add a Pre-Push Hook
npx husky add .husky/pre-push "pnpm test"
This will add a pre-push hook that will run
pnpm test
before each push. -
Commit Your Changes
git add . git commit -m "Add Husky configuration"
This will commit your changes and run the pre-commit hook.
-
Push Your Changes
git push
This will push your changes and run the pre-push hook.
Adding Commit Message Hook
-
Install Commitlint
pnpm add --save-dev @commitlint/{cli,config-conventional}
-
Create a Commitlint Configuration File
touch .commitlintrc.cjs echo "module.exports = { extends: ['@commitlint/config-conventional'] }" > .commitlintrc.cjs
-
Add a Commit Message Hook
touch .husky/commit-msg
echo "npx --no-install commitlint --edit $1" > .husky/commit-msg
-
Commit Your Changes
git add . git commit -m "chore: add commit message hook"
This will commit your changes and run the commit message hook.
Reference
YouTube: Git Hooks with Husky - React