Add information about my clean script

This commit is contained in:
Xenhat
2018-07-05 18:57:33 -04:00
committed by GitHub
parent 9c6fadb828
commit 77da0614ac
2 changed files with 21 additions and 17 deletions

17
clean
View File

@@ -1,17 +0,0 @@
git rm -f *..lastbuildstate
git rm -f *.dll
git rm -f *.exe
git rm -f *.exp
git rm -f *.iobj
git rm -f *.lastbuildstate
git rm -f *.lib
git rm -f *.log
git rm -f *.ltlog
git rm -f *.ipdb
git rm -f *.obj
git rm -f *.pch
git rm -f *.pdb
git rm -f *.res
git rm -f *.tlog
git rm -f *.adml
git rm -f *.admx

21
clean.cmd Normal file
View File

@@ -0,0 +1,21 @@
REM :: This script will forcefully clean the repository of residual cruft from the build process in the offchance I have forgotten
REM :: to include something. It is not perfect but it appears to do the job.
REM :: This is an alternative to 'git reset --hard HEAD' which would destroy local changes.
REM :: - Xenhat
git rm -f *..lastbuildstate
git rm -f *.dll
git rm -f *.exe
git rm -f *.exp
git rm -f *.iobj
git rm -f *.lastbuildstate
git rm -f *.lib
git rm -f *.log
git rm -f *.ltlog
git rm -f *.ipdb
git rm -f *.obj
git rm -f *.pch
git rm -f *.pdb
git rm -f *.res
git rm -f *.tlog
git rm -f *.adml
git rm -f *.admx