13 lines
521 B
Bash
Executable File
13 lines
521 B
Bash
Executable File
#!/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
|
|
# =============================================================================
|