Skip to content

Commit 4fe68cf

Browse files
committed
init: Add files and folders to .gitignore
1 parent bc4e36b commit 4fe68cf

File tree

1 file changed

+179
-0
lines changed

1 file changed

+179
-0
lines changed

.gitignore

Lines changed: 179 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,179 @@
1+
### MicrosoftOffice template
2+
*.tmp
3+
4+
# Word temporary
5+
~$*.doc*
6+
7+
# Word Auto Backup File
8+
Backup of *.doc*
9+
10+
# Excel temporary
11+
~$*.xls*
12+
13+
# Excel Backup File
14+
*.xlk
15+
16+
# PowerPoint temporary
17+
~$*.ppt*
18+
19+
# Visio autosave temporary files
20+
*.~vsd*
21+
22+
### Linux template
23+
*~
24+
25+
# temporary files which can be created if a process still has a handle open of a deleted file
26+
.fuse_hidden*
27+
28+
# KDE directory preferences
29+
.directory
30+
31+
# Linux trash folder which might appear on any partition or disk
32+
.Trash-*
33+
34+
# .nfs files are created when an open file is removed but is still being accessed
35+
.nfs*
36+
37+
### Backup template
38+
*.bak
39+
*.gho
40+
*.ori
41+
*.orig
42+
*.tmp
43+
44+
### LibreOffice template
45+
# LibreOffice locks
46+
.~lock.*#
47+
48+
### Windows template
49+
# Windows thumbnail cache files
50+
Thumbs.db
51+
Thumbs.db:encryptable
52+
ehthumbs.db
53+
ehthumbs_vista.db
54+
55+
# Dump file
56+
*.stackdump
57+
58+
# Folder config file
59+
[Dd]esktop.ini
60+
61+
# Recycle Bin used on file shares
62+
$RECYCLE.BIN/
63+
64+
# Windows Installer files
65+
*.cab
66+
*.msi
67+
*.msix
68+
*.msm
69+
*.msp
70+
71+
# Windows shortcuts
72+
*.lnk
73+
74+
### JetBrains+iml template
75+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
76+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
77+
78+
# User-specific stuff
79+
.idea/**/workspace.xml
80+
.idea/**/tasks.xml
81+
.idea/**/usage.statistics.xml
82+
.idea/**/dictionaries
83+
.idea/**/shelf
84+
85+
# AWS User-specific
86+
.idea/**/aws.xml
87+
88+
# Generated files
89+
.idea/**/contentModel.xml
90+
91+
# Sensitive or high-churn files
92+
.idea/**/dataSources/
93+
.idea/**/dataSources.ids
94+
.idea/**/dataSources.local.xml
95+
.idea/**/sqlDataSources.xml
96+
.idea/**/dynamic.xml
97+
.idea/**/uiDesigner.xml
98+
.idea/**/dbnavigator.xml
99+
100+
# Gradle
101+
.idea/**/gradle.xml
102+
.idea/**/libraries
103+
104+
# Gradle and Maven with auto-import
105+
# When using Gradle or Maven with auto-import, you should exclude module files,
106+
# since they will be recreated, and may cause churn. Uncomment if using
107+
# auto-import.
108+
# .idea/artifacts
109+
# .idea/compiler.xml
110+
# .idea/jarRepositories.xml
111+
# .idea/modules.xml
112+
# .idea/*.iml
113+
# .idea/modules
114+
# *.iml
115+
# *.ipr
116+
117+
# CMake
118+
cmake-build-*/
119+
120+
# Mongo Explorer plugin
121+
.idea/**/mongoSettings.xml
122+
123+
# File-based project format
124+
*.iws
125+
126+
# IntelliJ
127+
out/
128+
129+
# mpeltonen/sbt-idea plugin
130+
.idea_modules/
131+
132+
# JIRA plugin
133+
atlassian-ide-plugin.xml
134+
135+
# Cursive Clojure plugin
136+
.idea/replstate.xml
137+
138+
# SonarLint plugin
139+
.idea/sonarlint/
140+
141+
# Crashlytics plugin (for Android Studio and IntelliJ)
142+
com_crashlytics_export_strings.xml
143+
crashlytics.properties
144+
crashlytics-build.properties
145+
fabric.properties
146+
147+
# Editor-based Rest Client
148+
.idea/httpRequests
149+
150+
# Android studio 3.1+ serialized cache file
151+
.idea/caches/build_file_checksums.ser
152+
153+
### macOS template
154+
# General
155+
.DS_Store
156+
.AppleDouble
157+
.LSOverride
158+
159+
# Icon must end with two \r
160+
Icon
161+
162+
# Thumbnails
163+
._*
164+
165+
# Files that might appear in the root of a volume
166+
.DocumentRevisions-V100
167+
.fseventsd
168+
.Spotlight-V100
169+
.TemporaryItems
170+
.Trashes
171+
.VolumeIcon.icns
172+
.com.apple.timemachine.donotpresent
173+
174+
# Directories potentially created on remote AFP share
175+
.AppleDB
176+
.AppleDesktop
177+
Network Trash Folder
178+
Temporary Items
179+
.apdisk

0 commit comments

Comments
 (0)