From 77da0614ac8ed9de58b8b07bae530d7986a82389 Mon Sep 17 00:00:00 2001 From: Xenhat Date: Thu, 5 Jul 2018 18:57:33 -0400 Subject: [PATCH] Add information about my clean script --- clean | 17 ----------------- clean.cmd | 21 +++++++++++++++++++++ 2 files changed, 21 insertions(+), 17 deletions(-) delete mode 100644 clean create mode 100644 clean.cmd diff --git a/clean b/clean deleted file mode 100644 index ca196f5..0000000 --- a/clean +++ /dev/null @@ -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 diff --git a/clean.cmd b/clean.cmd new file mode 100644 index 0000000..70ce9bb --- /dev/null +++ b/clean.cmd @@ -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