Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .beads/hooks/post-checkout
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# bd (beads) post-checkout hook - thin shim
#
# This shim delegates to 'bd hook post-checkout' which contains
# This shim delegates to 'bd hooks post-checkout' which contains
# the actual hook logic. This pattern ensures hook behavior is always
# in sync with the installed bd version - no manual updates needed.
#
Expand All @@ -19,5 +19,3 @@ if ! command -v bd >/dev/null 2>&1; then
# Silently skip - post-checkout is called frequently
exit 0
fi

exec bd hook post-checkout "$@"
4 changes: 2 additions & 2 deletions .beads/hooks/post-merge
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# bd (beads) post-merge hook - thin shim
#
# This shim delegates to 'bd hook post-merge' which contains
# This shim delegates to 'bd hooks post-merge' which contains
# the actual hook logic. This pattern ensures hook behavior is always
# in sync with the installed bd version - no manual updates needed.
#
Expand All @@ -21,4 +21,4 @@ if ! command -v bd >/dev/null 2>&1; then
exit 0
fi

exec bd hook post-merge "$@"
exec bd hooks post-merge "$@"
4 changes: 2 additions & 2 deletions .beads/hooks/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# bd (beads) pre-commit hook — thin shim
#
# Delegates to 'bd hook pre-commit' which contains the actual hook logic.
# Delegates to 'bd hooks pre-commit' which contains the actual hook logic.
# This pattern ensures hook behavior is always in sync with the installed
# bd version — no manual updates needed.
#
Expand All @@ -22,4 +22,4 @@ if ! command -v bd >/dev/null 2>&1; then
exit 0
fi

exec bd hook pre-commit "$@"
exec bd hooks pre-commit "$@"
19 changes: 0 additions & 19 deletions .beads/hooks/pre-push

This file was deleted.

24 changes: 0 additions & 24 deletions .beads/hooks/prepare-commit-msg

This file was deleted.

6 changes: 0 additions & 6 deletions .beads/issues.jsonl

This file was deleted.

3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -160,3 +160,6 @@ cython_debug/
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
.beads/backup
.beads/embeddeddolt
.beads/dolt-server.*
Loading