We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c6fadb commit 77da061Copy full SHA for 77da061
clean
clean.cmd
@@ -0,0 +1,21 @@
1
+REM :: This script will forcefully clean the repository of residual cruft from the build process in the offchance I have forgotten
2
+REM :: to include something. It is not perfect but it appears to do the job.
3
+REM :: This is an alternative to 'git reset --hard HEAD' which would destroy local changes.
4
+REM :: - Xenhat
5
+git rm -f *..lastbuildstate
6
+git rm -f *.dll
7
+git rm -f *.exe
8
+git rm -f *.exp
9
+git rm -f *.iobj
10
+git rm -f *.lastbuildstate
11
+git rm -f *.lib
12
+git rm -f *.log
13
+git rm -f *.ltlog
14
+git rm -f *.ipdb
15
+git rm -f *.obj
16
+git rm -f *.pch
17
+git rm -f *.pdb
18
+git rm -f *.res
19
+git rm -f *.tlog
20
+git rm -f *.adml
21
+git rm -f *.admx
0 commit comments