30 Zeilen
381 B
Batchfile
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 |