- Add .planning/ZONE-TAXONOMY.md classifying all rename targets (DISPLAY/CODE/STORED) - Add .planning/REBASE-RUNBOOK.md documenting range-diff rebase verification workflow - Add scripts/install-hooks.sh for post-clone hook reinstallation
6 lines
249 B
Bash
6 lines
249 B
Bash
#!/bin/sh
|
|
# Install Nexus git hooks
|
|
REPO_ROOT="$(git rev-parse --show-toplevel)"
|
|
cp "$REPO_ROOT/scripts/nexus-commit-msg-hook.sh" "$REPO_ROOT/.git/hooks/commit-msg"
|
|
chmod +x "$REPO_ROOT/.git/hooks/commit-msg"
|
|
echo "Nexus commit-msg hook installed."
|