11 lines
279 B
Bash
Executable File
11 lines
279 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
# Delegate to .githooks/pre-push for comprehensive checks
|
|
# (upstream sync, rebase check, single-commit enforcement)
|
|
|
|
if [ -x ".githooks/pre-push" ]; then
|
|
.githooks/pre-push "$@"
|
|
else
|
|
echo "Warning: .githooks/pre-push not found, skipping custom checks"
|
|
fi
|