Skip to content

Commit 029ca1f

Browse files
majguoyiliuTo
authored andcommitted
add .gitignore file to asset-manager to workaround issues/15
Signed-off-by: Jianguo Ma <[email protected]>
1 parent 4959728 commit 029ca1f

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed

asset-manager/.gitignore

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# Compiled class file
2+
*.class
3+
4+
# Log file
5+
*.log
6+
7+
# BlueJ files
8+
*.ctxt
9+
10+
# Mobile Tools for Java (J2ME)
11+
.mtj.tmp/
12+
13+
# Package Files #
14+
*.jar
15+
*.war
16+
*.nar
17+
*.ear
18+
*.zip
19+
*.tar.gz
20+
*.rar
21+
22+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23+
hs_err_pid*
24+
replay_pid*
25+
26+
HELP.md
27+
target/
28+
!.mvn/wrapper/maven-wrapper.jar
29+
!**/src/main/**/target/
30+
!**/src/test/**/target/
31+
32+
### STS ###
33+
.apt_generated
34+
.classpath
35+
.factorypath
36+
.project
37+
.settings
38+
.springBeans
39+
.sts4-cache
40+
41+
### IntelliJ IDEA ###
42+
.idea
43+
*.iws
44+
*.iml
45+
*.ipr
46+
47+
### NetBeans ###
48+
/nbproject/private/
49+
/nbbuild/
50+
/dist/
51+
/nbdist/
52+
/.nb-gradle/
53+
build/
54+
!**/src/main/**/build/
55+
!**/src/test/**/build/
56+
57+
### VS Code ###
58+
.vscode/
59+
60+
/logs/

0 commit comments

Comments
 (0)