blasilli commited on
Commit
ff233a0
·
verified ·
1 Parent(s): 068ca24

added gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +74 -0
.gitignore ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Created by https://www.toptal.com/developers/gitignore/api/linux,windows,osx
2
+ # Edit at https://www.toptal.com/developers/gitignore?templates=linux,windows,osx
3
+
4
+ ### Linux ###
5
+ *~
6
+
7
+ # temporary files which can be created if a process still has a handle open of a deleted file
8
+ .fuse_hidden*
9
+
10
+ # KDE directory preferences
11
+ .directory
12
+
13
+ # Linux trash folder which might appear on any partition or disk
14
+ .Trash-*
15
+
16
+ # .nfs files are created when an open file is removed but is still being accessed
17
+ .nfs*
18
+
19
+ ### OSX ###
20
+ # General
21
+ .DS_Store
22
+ .AppleDouble
23
+ .LSOverride
24
+
25
+ # Icon must end with two \r
26
+ Icon
27
+
28
+
29
+ # Thumbnails
30
+ ._*
31
+
32
+ # Files that might appear in the root of a volume
33
+ .DocumentRevisions-V100
34
+ .fseventsd
35
+ .Spotlight-V100
36
+ .TemporaryItems
37
+ .Trashes
38
+ .VolumeIcon.icns
39
+ .com.apple.timemachine.donotpresent
40
+
41
+ # Directories potentially created on remote AFP share
42
+ .AppleDB
43
+ .AppleDesktop
44
+ Network Trash Folder
45
+ Temporary Items
46
+ .apdisk
47
+
48
+ ### Windows ###
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
+ # End of https://www.toptal.com/developers/gitignore/api/linux,windows,osx