Add scripts to clean up

This commit is contained in:
Zontreck 2023-09-21 14:41:05 -07:00
parent 7de04dddf2
commit f665ab2d37
2 changed files with 14 additions and 0 deletions

7
clean.bat Normal file
View file

@ -0,0 +1,7 @@
@echo off
git clean -xfd
git reset --hard
git submodule foreach git clean -xfd
git submodule foreach git reset --hard

7
clean.sh Normal file
View file

@ -0,0 +1,7 @@
#!/bin/bash
git clean -xfd
git reset --hard
git submodule foreach git clean -xfd
git submodule foreach git reset --hard