From ca4236324fce1e0c8feebdc9fc06fb37073ee30b Mon Sep 17 00:00:00 2001 From: Benjamin Arhen Date: Thu, 16 Jan 2025 09:18:38 -0600 Subject: [PATCH] remove split_commits --- split_commits.bat | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 split_commits.bat diff --git a/split_commits.bat b/split_commits.bat deleted file mode 100644 index 2fb19f1..0000000 --- a/split_commits.bat +++ /dev/null @@ -1,18 +0,0 @@ -@echo off - -REM Reset the last commit -git reset HEAD~1 - -REM Loop through all folders in the current directory -for /d %%F in (*) do ( - echo Processing folder: %%F - git add "%%F" - git commit -m "Partial commit for %%F" -) - -REM Handle root-level files -echo Adding root-level files -git add * -git commit -m "Partial commit for root-level files" - -echo Splitting commits by folders is complete.