From f7b4b4c095ba011f57a90ca61d63411bf49b41ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Wed, 4 Dec 2024 00:31:23 +0200 Subject: [PATCH] fix(config): remove `rebase` from available hooks It is not actually a hook, but an argument to the `post-rewrite` hook. https://git-scm.com/docs/githooks#Documentation/githooks.txt-rebase --- internal/config/available_hooks.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/config/available_hooks.go b/internal/config/available_hooks.go index 7a53f2c5..68927f81 100644 --- a/internal/config/available_hooks.go +++ b/internal/config/available_hooks.go @@ -30,7 +30,6 @@ var AvailableHooks = map[string]struct{}{ "push-to-checkout": {}, "pre-auto-gc": {}, "post-rewrite": {}, - "rebase": {}, "sendemail-validate": {}, "fsmonitor-watchman": {}, "p4-changelist": {},