OSDN Git Service

start v1.101.107-SNAPSHOT
[jovsonz/Jovsonz.git] / .gitignore
1 ##### Git ignore pattern
2 ## See https://git-scm.com/docs/gitignore
3 ## See https://docs.github.com/en/free-pro-team@latest/github/using-git/ignoring-files
4 ## See https://github.com/github/gitignore
5 ## See https://www.toptal.com/developers/gitignore
6
7
8 ### Unix
9
10 /tmp/
11 *~
12 *.swp
13 *.orig
14 # core
15
16
17 ### macOS
18
19 *.DS_Store
20 ._*
21 __MACOSX
22
23
24 ### Windows
25
26 Thumbs.db
27 [Dd]esktop.ini
28 *.lnk
29
30
31 ### JDK
32
33 hs_err_pid*
34
35
36 ### Maven
37
38 /target/
39
40
41 ### Netbeans
42
43 /build/
44 /nbbuild/
45 /dist/
46 /nbdist/
47 /nbproject/
48 /nbactions.xml
49 /nb-configuration.xml
50
51
52 ### Eclipse
53
54 /bin/
55 /.settings/
56 /.metadata/
57 /.externalToolBuilders/
58 /.classpath
59 /.project
60 /.checkstyle
61
62
63 ### IntelliJ
64
65 /.idea/
66 /out/
67 *.iws
68 *.iml
69 *.ipr
70
71
72 ### Visual Studio Code
73
74 /.vscode/
75
76
77 ### EOF ###