Files
ClaudeProjectManager/scripts/check_lfs_status.bat
Claude Project Manager 4dab418f2f Initial commit
2025-07-09 22:10:42 +02:00

30 Zeilen
381 B
Batchfile

@echo off
echo Checking Git LFS Status...
echo =============================
echo.
echo 1. LFS Version:
git lfs version
echo.
echo 2. LFS Environment:
git lfs env
echo.
echo 3. Tracked LFS patterns:
git lfs track
echo.
echo 4. LFS files in repository:
git lfs ls-files
echo.
echo 5. Verifying LFS remote:
git lfs fsck
echo.
echo 6. Current remotes:
git remote -v
echo.
pause