Skip to content
This repository was archived by the owner on May 19, 2022. It is now read-only.

Commit 1e60eae

Browse files
committed
Improve gitignore, actually ignore os-specific files
1 parent e73d1fe commit 1e60eae

File tree

1 file changed

+97
-0
lines changed

1 file changed

+97
-0
lines changed

.gitignore

+97
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,100 @@
1+
### Windows ###
2+
# Windows image file caches
3+
Thumbs.db
4+
ehthumbs.db
5+
6+
# Folder config file
7+
Desktop.ini
8+
9+
# Recycle Bin used on file shares
10+
$RECYCLE.BIN/
11+
12+
# Windows Installer files
13+
*.cab
14+
*.msi
15+
*.msm
16+
*.msp
17+
18+
# Windows shortcuts
19+
*.lnk
20+
21+
22+
### OSX ###
23+
.DS_Store
24+
.AppleDouble
25+
.LSOverride
26+
27+
# Icon must end with two \r
28+
Icon
29+
30+
# Thumbnails
31+
._*
32+
33+
# Files that might appear in the root of a volume
34+
.DocumentRevisions-V100
35+
.fseventsd
36+
.Spotlight-V100
37+
.TemporaryItems
38+
.Trashes
39+
.VolumeIcon.icns
40+
41+
# Directories potentially created on remote AFP share
42+
.AppleDB
43+
.AppleDesktop
44+
Network Trash Folder
45+
Temporary Items
46+
.apdisk
47+
48+
49+
### Linux ###
50+
*~
51+
52+
# KDE directory preferences
53+
.directory
54+
55+
# Linux trash folder which might appear on any partition or disk
56+
.Trash-*
57+
58+
59+
### Qt ###
60+
# C++ objects and libs
61+
62+
*.slo
63+
*.lo
64+
*.o
65+
*.a
66+
*.la
67+
*.lai
68+
*.so
69+
*.dll
70+
*.dylib
71+
72+
# Qt-es
73+
74+
/.qmake.cache
75+
/.qmake.stash
76+
*.pro.user
77+
*.pro.user.*
78+
*.qbs.user
79+
*.qbs.user.*
80+
*.moc
81+
moc_*.cpp
82+
qrc_*.cpp
83+
ui_*.h
84+
Makefile*
85+
*-build-*
86+
87+
# QtCreator
88+
89+
*.autosave
90+
91+
#QtCtreator Qml
92+
*.qmlproject.user
93+
*.qmlproject.user.*
94+
95+
96+
### Ponscripter-fork ###
97+
198
.svn/
299
*.utf
3100
*.o

0 commit comments

Comments
 (0)