Update gitignore
Browse files- .gitignore +98 -0
.gitignore
ADDED
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
### LibreOffice ###
|
2 |
+
# LibreOffice locks
|
3 |
+
.~lock.*#
|
4 |
+
|
5 |
+
### Linux ###
|
6 |
+
*~
|
7 |
+
|
8 |
+
# temporary files which can be created if a process still has a handle open of a deleted file
|
9 |
+
.fuse_hidden*
|
10 |
+
|
11 |
+
# KDE directory preferences
|
12 |
+
.directory
|
13 |
+
|
14 |
+
# Linux trash folder which might appear on any partition or disk
|
15 |
+
.Trash-*
|
16 |
+
|
17 |
+
# .nfs files are created when an open file is removed but is still being accessed
|
18 |
+
.nfs*
|
19 |
+
|
20 |
+
### macOS ###
|
21 |
+
# General
|
22 |
+
.DS_Store
|
23 |
+
.AppleDouble
|
24 |
+
.LSOverride
|
25 |
+
|
26 |
+
# Icon must end with two \r
|
27 |
+
Icon
|
28 |
+
|
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 |
+
.com.apple.timemachine.donotpresent
|
41 |
+
|
42 |
+
# Directories potentially created on remote AFP share
|
43 |
+
.AppleDB
|
44 |
+
.AppleDesktop
|
45 |
+
Network Trash Folder
|
46 |
+
Temporary Items
|
47 |
+
.apdisk
|
48 |
+
|
49 |
+
### macOS Patch ###
|
50 |
+
# iCloud generated files
|
51 |
+
*.icloud
|
52 |
+
|
53 |
+
### Vim ###
|
54 |
+
# Swap
|
55 |
+
[._]*.s[a-v][a-z]
|
56 |
+
!*.svg # comment out if you don't need vector files
|
57 |
+
[._]*.sw[a-p]
|
58 |
+
[._]s[a-rt-v][a-z]
|
59 |
+
[._]ss[a-gi-z]
|
60 |
+
[._]sw[a-p]
|
61 |
+
|
62 |
+
# Session
|
63 |
+
Session.vim
|
64 |
+
Sessionx.vim
|
65 |
+
|
66 |
+
# Temporary
|
67 |
+
.netrwhist
|
68 |
+
# Auto-generated tag files
|
69 |
+
tags
|
70 |
+
# Persistent undo
|
71 |
+
[._]*.un~
|
72 |
+
|
73 |
+
### Windows ###
|
74 |
+
# Windows thumbnail cache files
|
75 |
+
Thumbs.db
|
76 |
+
Thumbs.db:encryptable
|
77 |
+
ehthumbs.db
|
78 |
+
ehthumbs_vista.db
|
79 |
+
|
80 |
+
# Dump file
|
81 |
+
*.stackdump
|
82 |
+
|
83 |
+
# Folder config file
|
84 |
+
[Dd]esktop.ini
|
85 |
+
|
86 |
+
# Recycle Bin used on file shares
|
87 |
+
$RECYCLE.BIN/
|
88 |
+
|
89 |
+
# Windows Installer files
|
90 |
+
*.cab
|
91 |
+
*.msi
|
92 |
+
*.msix
|
93 |
+
*.msm
|
94 |
+
*.msp
|
95 |
+
|
96 |
+
# Windows shortcuts
|
97 |
+
*.lnk
|
98 |
+
|