mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2026-08-31 02:04:02 +08:00
274082fd77
* refactor: clean to roadmap content * refactor: move shared helpers into scripts/lib
704 B
704 B
Git hooks
Git hooks are scripts that run automatically at specific points in the Git workflow, such as before a commit or after a push. They live in the .git/hooks directory and can be written in any scripting language the system supports. Hooks are commonly used to enforce rules, like running tests before allowing a commit, or triggering actions like deployments after a push.
Visit the following resources to learn more: