From a8dbb86d4f1b971dca10fe10bb53bb02062fc18a Mon Sep 17 00:00:00 2001 From: Edward Langley Date: Thu, 9 Apr 2026 15:26:10 -0700 Subject: [PATCH] chore: disable lfs --- .beads/hooks/post-checkout | 5 ----- .beads/hooks/post-commit | 4 ---- .beads/hooks/post-merge | 4 ---- .beads/hooks/pre-push | 4 ---- 4 files changed, 17 deletions(-) diff --git a/.beads/hooks/post-checkout b/.beads/hooks/post-checkout index 2917977..67ad327 100755 --- a/.beads/hooks/post-checkout +++ b/.beads/hooks/post-checkout @@ -22,8 +22,3 @@ if command -v bd >/dev/null 2>&1; then if [ $_bd_exit -ne 0 ]; then exit $_bd_exit; fi fi # --- END BEADS INTEGRATION v1.0.0 --- - -# --- BEGIN GIT LFS --- -command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-checkout' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks')."; exit 2; } -git lfs post-checkout "$@" -# --- END GIT LFS --- diff --git a/.beads/hooks/post-commit b/.beads/hooks/post-commit index c512578..0617957 100755 --- a/.beads/hooks/post-commit +++ b/.beads/hooks/post-commit @@ -1,5 +1 @@ #!/usr/bin/env sh -# --- BEGIN GIT LFS --- -command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-commit' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks')."; exit 2; } -git lfs post-commit "$@" -# --- END GIT LFS --- diff --git a/.beads/hooks/post-merge b/.beads/hooks/post-merge index d3f010e..2a53d3d 100755 --- a/.beads/hooks/post-merge +++ b/.beads/hooks/post-merge @@ -23,7 +23,3 @@ if command -v bd >/dev/null 2>&1; then fi # --- END BEADS INTEGRATION v1.0.0 --- -# --- BEGIN GIT LFS --- -command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-merge' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks')."; exit 2; } -git lfs post-merge "$@" -# --- END GIT LFS --- diff --git a/.beads/hooks/pre-push b/.beads/hooks/pre-push index 1ef122d..de67e0b 100755 --- a/.beads/hooks/pre-push +++ b/.beads/hooks/pre-push @@ -23,7 +23,3 @@ if command -v bd >/dev/null 2>&1; then fi # --- END BEADS INTEGRATION v1.0.0 --- -# --- BEGIN GIT LFS --- -command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'pre-push' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks')."; exit 2; } -git lfs pre-push "$@" -# --- END GIT LFS ---