fbpx

Creating Git Hooks Using Husky

Creating Git Hooks Using Husky

Author: Murtuzaali Surti

Hooks in git are nothing but some code which can be executed at specific points during git execution process.

They are used to verify everything is as expected before or after executing a git command or action. Some common applications include formatting the code before committing, performing build step before pushing the code to production, etc. Click here to read more!