Skip to content

Commit 77da061

Browse files
authored
Add information about my clean script
1 parent 9c6fadb commit 77da061

File tree

2 files changed

+21
-17
lines changed

2 files changed

+21
-17
lines changed

clean

Lines changed: 0 additions & 17 deletions
This file was deleted.

clean.cmd

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)