Implements support for installing git hooks to a versioned directory (.beads-hooks/) that can be committed to the repository and shared with team members. This solves the team collaboration issue where hooks need to be installed in pre-built containers. Changes: - Add --shared flag to 'bd hooks install' command - Install hooks to .beads-hooks/ when --shared is used - Automatically configure git config core.hooksPath - Update help text to explain shared mode Fixes #229
41 lines
882 B
Bash
Executable File
41 lines
882 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# bd-hooks-version: 0.24.2
|
|
#
|
|
# Beads post-checkout hook
|
|
# Automatically imports JSONL to SQLite database after checking out branches
|
|
#
|
|
# Install: cp examples/git-hooks/post-checkout .git/hooks/post-checkout && chmod +x .git/hooks/post-checkout
|
|
|
|
# Arguments provided by git:
|
|
# $1 = ref of previous HEAD
|
|
# $2 = ref of new HEAD
|
|
# $3 = flag (1 if branch checkout, 0 if file checkout)
|
|
|
|
# Only run on branch checkouts
|
|
if [[ "$3" != "1" ]]; then
|
|
exit 0
|
|
fi
|
|
|
|
set -e
|
|
|
|
# Check if bd is installed
|
|
if ! command -v bd &> /dev/null; then
|
|
exit 0
|
|
fi
|
|
|
|
# Check if issues.jsonl exists
|
|
if [[ ! -f .beads/issues.jsonl ]]; then
|
|
exit 0
|
|
fi
|
|
|
|
# Import issues from JSONL
|
|
echo "🔗 Importing beads issues from JSONL..."
|
|
|
|
if bd import -i .beads/issues.jsonl 2>/dev/null; then
|
|
echo "✓ Beads issues imported successfully"
|
|
else
|
|
echo "Warning: bd import failed"
|
|
fi
|
|
|
|
exit 0
|