File tree 1 file changed +98
-0
lines changed
1 file changed +98
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Add any directories, files, or patterns you don't want to be tracked by version control
2
+
3
+ # Compiled source #
4
+ # ##################
5
+ * .com
6
+ * .class
7
+ * .dll
8
+ * .exe
9
+ * .o
10
+ * .so
11
+
12
+ # Packages #
13
+ # ###########
14
+ # it's better to unpack these files and commit the raw source
15
+ # git has its own built in compression methods
16
+ * .7z
17
+ * .dmg
18
+ * .gz
19
+ * .iso
20
+ * .jar
21
+ * .war
22
+ * .ear
23
+ * .sar
24
+ * .rar
25
+ * .tar
26
+ * .zip
27
+
28
+ # Logs and databases #
29
+ # #####################
30
+ * .log
31
+
32
+ # OS generated files #
33
+ # #####################
34
+ .DS_Store *
35
+ ehthumbs.db
36
+ Icon ?
37
+ Thumbs.db
38
+
39
+ # Maven #
40
+ # ########
41
+ target
42
+ pom.xml.versionsBackup
43
+ dependency-reduced-pom.xml
44
+ ** /target /
45
+
46
+ # Eclipse #
47
+ # based on https://github.com/github/gitignore/blob/master/Global/Eclipse.gitignore #
48
+ # ##########
49
+ .settings
50
+ .project
51
+ .classpath
52
+ .springWebflow
53
+ .metadata
54
+ .springBeans
55
+ ** /.externalToolBuilders /
56
+ * Servers /
57
+
58
+ # JetBrains #
59
+ # based on https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore #
60
+ # ######################################################################################
61
+ * .iml
62
+ .idea /**
63
+ * .ipr
64
+ * .iws
65
+ ** /out /
66
+ .idea_modules /
67
+ atlassian-ide-plugin.xml
68
+ com_crashlytics_export_strings.xml
69
+ crashlytics.properties
70
+ crashlytics-build.properties
71
+ fabric.properties
72
+
73
+ # Node/NPM/Yarn #
74
+ # ################
75
+ node
76
+ ** /node /
77
+ ** /node_modules /
78
+
79
+ # Bower #
80
+ # ###########
81
+ ** /bower /
82
+
83
+ # Webpack #
84
+ # ###########
85
+ ** /dist /
86
+ ** /www /
87
+
88
+ # Other #
89
+ # ########
90
+ * . * ~
91
+ * .orig
92
+ .gitconfig
93
+ docker
94
+
95
+ ** /logs /
96
+
97
+ # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
98
+ hs_err_pid *
You can’t perform that action at this time.
0 commit comments