#!/usr/bin/env sh # ============================================================================= # Call .githooks/post-checkout first (if exists) # ============================================================================= if [ -x ".githooks/post-checkout" ]; then .githooks/post-checkout "$@" fi # ============================================================================= # Husky-specific post-checkout logic can be added below # =============================================================================