Skip to content

Commit 5ff7ee7

Browse files
author
David Witherspoon
committed
Initializing repository with gitignore file
0 parents  commit 5ff7ee7

1 file changed

Lines changed: 84 additions & 0 deletions

File tree

.gitignore

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
# basic
2+
*~
3+
target
4+
GTAGS
5+
GRTAGS
6+
GPATH
7+
prop
8+
out
9+
.DS_Store
10+
.idea
11+
*.iml
12+
.project
13+
.classpath
14+
.settings
15+
*.sublime-project
16+
*.sublime-workspace
17+
build-local.properties
18+
.gradle
19+
build
20+
21+
# Github java basic
22+
*.class
23+
24+
# Mobile Tools for Java (J2ME)
25+
.mtj.tmp/
26+
27+
# Package Files #
28+
*.jar
29+
*.war
30+
*.ear
31+
32+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
33+
hs_err_pid*
34+
35+
### Xcode ###
36+
*.pbxuser
37+
!default.pbxuser
38+
*.mode1v3
39+
!default.mode1v3
40+
*.mode2v3
41+
!default.mode2v3
42+
*.perspectivev3
43+
!default.perspectivev3
44+
xcuserdata
45+
*.xccheckout
46+
*.moved-aside
47+
DerivedData
48+
*.xcuserstate
49+
50+
### Flex project ###
51+
.actionScriptProperties
52+
.flexProperties
53+
54+
### C ###
55+
# Object files
56+
*.o
57+
*.ko
58+
*.obj
59+
*.elf
60+
61+
# Precompiled Headers
62+
*.gch
63+
*.pch
64+
65+
# Libraries
66+
*.lib
67+
*.a
68+
*.la
69+
*.lo
70+
71+
# Shared objects (inc. Windows DLLs)
72+
*.dll
73+
*.so
74+
*.so.*
75+
*.dylib
76+
77+
# Executables
78+
*.exe
79+
*.out
80+
*.app
81+
*.i*86
82+
*.x86_64
83+
*.hex
84+

0 commit comments

Comments
 (0)