Search code examples
rebasehusky

HUSKY_SKIP_HOOKS=1 ignored during rebase


I'm trying to rebase, but the Husky hooks keep running between commits even after HUSKY_SKIP_HOOKS=1 git rebase ..., failing the rebasing process. git rebase --no-verify did not help either. How to resolve this?


Solution

  • Use HUSKY=0 git rebase ... instead, see this comment.