-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.gitignore
92 lines (88 loc) · 1.52 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#### Intellij (https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore)
*.iml
*.ipr
*.iws
.idea/**/contentModel.xml
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/dataSources/
.idea/**/dbnavigator.xml
.idea/**/dictionaries
.idea/**/dynamic.xml
.idea/**/gradle.xml
.idea/**/libraries
.idea/**/mongoSettings.xml
.idea/**/shelf
.idea/**/sqlDataSources.xml
.idea/**/tasks.xml
.idea/**/uiDesigner.xml
.idea/**/usage.statistics.xml
.idea/**/workspace.xml
.idea/**/xtextAutoBuilderState.xml
.idea/*.iml
.idea/compiler.xml
.idea/jarRepositories.xml
.idea/modules
.idea/modules.xml
atlassian-ide-plugin.xml
out/
#### eclipse (https://github.com/github/gitignore/blob/master/Global/Eclipse.gitignore & https://gist.github.com/billygoo/2b0dfe020bac550c7bfe)
!gradle-wrapper.jar
!src/**/*target*/
*.bak
*.class
*.ear
*.jar
*.launch
*.swp
*.tmp
*.war
*target*
*~.nib
.apt_generated/
.apt_generated_test/
.classpath
.externalToolBuilders/
.factorypath
.gradle
.loadpath
.metadata
.project
.recommenders
.recommenders/
.settings/
.springBeans
.target
bin/
bin/**
build/
gradle-app.setting
local.properties
tmp/
tmp/**
tmp/**/*
#### java (https://github.com/github/gitignore/blob/master/Java.gitignore)
*.class
*.ear
*.jar
*.log
*.nar
*.rar
*.tar.gz
*.war
*.zip
hs_err_pid*
# Gradle (https://github.com/github/gitignore/blob/master/Gradle.gitignore)
!gradle-wrapper.jar
!src/**/build/
**/build/
.gradle
.gradletasknamecache
gradle-app.setting
# MVG
/TEST-*.txt
/TEST-*.xml
**/*_gen
**/*_gen.caches
.mps/workspace.xml
/.mps-caches/**