Fixes GH#483 - The pre-commit hook was blocking commits when `bd sync --flush-only` failed, even if the user had removed beads from their branch. This made it impossible to commit on branches that don't have beads configured. Changes: - Change "Error:" to "Warning:" in the message - Remove `exit 1` so commits proceed even if flush fails - Add comments explaining why we don't block commits 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
47 lines
1.5 KiB
Bash
Executable File
47 lines
1.5 KiB
Bash
Executable File
#!/bin/sh
|
|
# bd-hooks-version: 0.29.0
|
|
#
|
|
# bd (beads) pre-commit hook
|
|
#
|
|
# This hook ensures that any pending bd issue changes are flushed to
|
|
# .beads/issues.jsonl before the commit is created, preventing the
|
|
# race condition where daemon auto-flush fires after the commit.
|
|
#
|
|
# Installation:
|
|
# cp examples/git-hooks/pre-commit .git/hooks/pre-commit
|
|
# chmod +x .git/hooks/pre-commit
|
|
#
|
|
# Or use the install script:
|
|
# examples/git-hooks/install.sh
|
|
|
|
# Check if bd is available
|
|
if ! command -v bd >/dev/null 2>&1; then
|
|
echo "Warning: bd command not found, skipping pre-commit flush" >&2
|
|
exit 0
|
|
fi
|
|
|
|
# Check if we're in a bd workspace
|
|
if [ ! -d .beads ]; then
|
|
# Not a bd workspace, nothing to do
|
|
exit 0
|
|
fi
|
|
|
|
# Flush pending changes to JSONL
|
|
# Use --flush-only to skip git operations (we're already in a git hook)
|
|
# Suppress output unless there's an error
|
|
# Note: We warn but don't fail - this allows commits to proceed even if
|
|
# beads has issues (e.g., user removed .beads from their branch)
|
|
if ! bd sync --flush-only >/dev/null 2>&1; then
|
|
echo "Warning: Failed to flush bd changes to JSONL" >&2
|
|
echo "Run 'bd sync --flush-only' manually to diagnose" >&2
|
|
# Don't block the commit - user may have removed beads or have other issues
|
|
fi
|
|
|
|
# Stage all tracked JSONL files (issues.jsonl is canonical, beads.jsonl for backward compat, deletions.jsonl for deletion propagation)
|
|
# git add is harmless if file doesn't exist
|
|
for f in .beads/beads.jsonl .beads/issues.jsonl .beads/deletions.jsonl; do
|
|
[ -f "$f" ] && git add "$f" 2>/dev/null || true
|
|
done
|
|
|
|
exit 0
|