Git hooks sunan rubuce-rubuce ne da Git ke gudana ta atomatik a wasu wurare na Git workflow (kafin/bayan commits, pushes, merges, da sauransu). Suna ba da damar sarrafa aiki — karfafawa daidaita, gudana jajjerori, da kuma fara ayyuka — kuma an fi amfani da su don ingancin kodoro da haɗi da CI.
Menene hooks
Hooks are executable scripts in .git/hooks/ (or managed by tools) that Git runs on EVENTS:
CLIENT-SIDE (local):
pre-commit → before a commit is created (lint, format, run quick tests)
commit-msg → validate/format the commit message
pre-push → before pushing (run tests, prevent pushing broken code)
post-merge/checkout → after merge/checkout (e.g. reinstall dependencies)
SERVER-SIDE (on the remote):
pre-receive / update → enforce policies on push (reject bad pushes)
post-receive → trigger deployment/CI/notifications after a push
