Skip to content

Commit 433485e

Browse files
committed
🙈 update .gitignore
1 parent c33b4b6 commit 433485e

File tree

2 files changed

+111
-3
lines changed

2 files changed

+111
-3
lines changed

spring-boot/ses-spring-boot/.gitignore

Lines changed: 109 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### Gradle ###
2+
gradle-app.setting
3+
.gradletasknamecache
14
.gradle
25
/build/
36
!gradle/wrapper/gradle-wrapper.jar
@@ -23,4 +26,109 @@
2326
/nbbuild/
2427
/dist/
2528
/nbdist/
26-
/.nb-gradle/
29+
/.nb-gradle/
30+
31+
### Windows ###
32+
# Windows thumbnail cache files
33+
Thumbs.db
34+
ehthumbs.db
35+
ehthumbs_vista.db
36+
37+
# Dump file
38+
*.stackdump
39+
40+
# Folder config file
41+
[Dd]esktop.ini
42+
43+
# Recycle Bin used on file shares
44+
$RECYCLE.BIN/
45+
46+
# Windows Installer files
47+
*.cab
48+
*.msi
49+
*.msix
50+
*.msm
51+
*.msp
52+
53+
# Windows shortcuts
54+
*.lnk
55+
56+
### Linux ###
57+
*~
58+
59+
# temporary files which can be created if a process still has a handle open of a deleted file
60+
.fuse_hidden*
61+
62+
# KDE directory preferences
63+
.directory
64+
65+
# Linux trash folder which might appear on any partition or disk
66+
.Trash-*
67+
68+
# .nfs files are created when an open file is removed but is still being accessed
69+
.nfs*
70+
71+
### macOS ###
72+
# General
73+
.DS_Store
74+
.AppleDouble
75+
.LSOverride
76+
77+
# Icon must end with two \r
78+
Icon
79+
80+
# Thumbnails
81+
._*
82+
83+
# Files that might appear in the root of a volume
84+
.DocumentRevisions-V100
85+
.fseventsd
86+
.Spotlight-V100
87+
.TemporaryItems
88+
.Trashes
89+
.VolumeIcon.icns
90+
.com.apple.timemachine.donotpresent
91+
92+
# Directories potentially created on remote AFP share
93+
.AppleDB
94+
.AppleDesktop
95+
Network Trash Folder
96+
Temporary Items
97+
.apdisk
98+
99+
### Java ###
100+
# Compiled class file
101+
*.class
102+
103+
# Log file
104+
*.log
105+
106+
# BlueJ files
107+
*.ctxt
108+
109+
# Mobile Tools for Java (J2ME)
110+
.mtj.tmp/
111+
112+
# Package Files #
113+
*.jar
114+
*.war
115+
*.nar
116+
*.ear
117+
*.zip
118+
*.tar.gz
119+
*.rar
120+
121+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
122+
hs_err_pid*
123+
124+
### MicrosoftOffice ###
125+
*.tmp
126+
~$*.doc*
127+
~$*.xls*
128+
*.xlk
129+
~$*.ppt*
130+
*.~vsd*
131+
132+
### TortoiseGit ###
133+
/.tgitconfig
134+
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Wed Feb 20 01:53:44 MSK 2019
2-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-all.zip
32
distributionBase=GRADLE_USER_HOME
43
distributionPath=wrapper/dists
5-
zipStorePath=wrapper/dists
64
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-all.zip

0 commit comments

Comments
 (0)