mfashby.net

Website mfashby.net
git clone git://code.mfashby.net:/mfashby.net
Log | Files | Refs | Submodules | README

commit bbbaa94c1851483446bd23732ce7bd1e47796220
parent ac00b9e1359f32d50184f9e73c7568fcc5101d1c
Author: Martin Ashby <martin@ashbysoft.com>
Date:   Fri, 13 Jan 2023 09:10:16 +0000

Removed git LFS support

Diffstat:
D.gitattributes | 1-
Mstatic/10-11-21-longboard-slides.mp4 | 0
Mstatic/drop-in.mp4 | 0
Mstatic/skate4.mp4 | 0
Mupdate-hooks.sh | 3++-
5 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitattributes b/.gitattributes @@ -1 +0,0 @@ -*.mp4 filter=lfs diff=lfs merge=lfs -text diff --git a/static/10-11-21-longboard-slides.mp4 b/static/10-11-21-longboard-slides.mp4 Binary files differ. diff --git a/static/drop-in.mp4 b/static/drop-in.mp4 Binary files differ. diff --git a/static/skate4.mp4 b/static/skate4.mp4 Binary files differ. diff --git a/update-hooks.sh b/update-hooks.sh @@ -1,5 +1,6 @@ #!/usr/bin/env bash ## Configure git hooks -git lfs install +touch .git/hooks/pre-push +chmod +x .git/hooks/pre-push grep -qxF './deploy.sh' .git/hooks/pre-push || echo './deploy.sh' >> .git/hooks/pre-push