再git和自己的仓库中安装lfs
git lfs install
在git仓库中配置pre-commmit
钩子(名称固定)
#!/bin/sh
# Find all files that are staged for commit and greater than 100MB
FILES=$(git diff --cached --name-only | xargs -I {} find {} -type f -size +100M 2>/dev/null)
# If there are any such files, track them using Git LFS
if [ ! -z "$FILES" ]; then
echo "Large files detected. Adding to Git LFS tracking:"
echo "$FILES"
echo "$FILES" | xargs git lfs track
git add .gitattributes
echo "Re-staging large files with Git LFS:"
echo "$FILES"
echo "$FILES" | xargs git add
fi
如果希望git hooks随仓库同步,可以参考以下setup
@echo off
REM Check if Git LFS is installed
git lfs --version >nul 2>&1
IF %ERRORLEVEL% NEQ 0 (
echo Git LFS is not installed. Installing Git LFS...
git lfs install
REM You can add the installation command for Git LFS here.
REM For example, you can download and run the installer from the official website.
REM Visit <https://git-lfs.github.com/> for the latest release.
) ELSE (
echo Git LFS is already installed.
)
REM Check if Git hooksPath is set to .githooks
git config core.hooksPath | findstr /C:".githooks" >nul
IF %ERRORLEVEL% NEQ 0 (
echo Setting Git hooks path to .githooks...
git config core.hooksPath .githooks
echo Git hooks path set to .githooks.
) ELSE (
echo Git hooks path is already set to .githooks.
)
#!/bin/bash
# Check if Git LFS is installed
if ! command -v git-lfs &> /dev/null; then
echo "Git LFS is not installed. Installing Git LFS..."
# You can add the installation command for Git LFS here.
# For example, if you're using macOS or Linux, you can install using Homebrew:
# brew install git-lfs
# If you're using Linux, you can install using apt:
# sudo apt-get install git-lfs
else
echo "Git LFS is already installed."
fi
# Check if Git hooksPath is set to .githooks
if [ "$(git config core.hooksPath)" != ".githooks" ]; then
echo "Setting Git hooks path to .githooks..."
git config core.hooksPath .githooks
echo "Git hooks path set to .githooks."
else
echo "Git hooks path is already set to .githooks."
fi