Add batch and PowerShell scripts to find untracked binary files not in Git LFS

This commit is contained in:
2026-03-17 15:25:48 -06:00
parent 60100fbab2
commit dc97400d1e
3 changed files with 820 additions and 9 deletions
+25
View File
@@ -0,0 +1,25 @@
@echo off
:: Batch wrapper to find binary files not tracked by Git LFS
echo ========================================
echo Find Untracked Binaries (Not in LFS)
echo ========================================
echo.
:: Check if running from the correct directory
if not exist ".git" (
echo ERROR: No .git directory found in current folder.
echo Please run this script from your repository root.
pause
exit /b 1
)
echo This will scan your repository for binary files that are
echo tracked by Git instead of Git LFS.
echo.
:: Run the PowerShell script
powershell -ExecutionPolicy Bypass -File "%~dp0find-untracked-binaries.ps1" %*
echo.
pause