Skip to content

Commit 71e1194

Browse files
committed
copy files
0 parents  commit 71e1194

19 files changed

+6035
-0
lines changed

.gitignore

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
# ROMs
2+
*.gb
3+
*.gbc
4+
5+
# emulator trashes
6+
*.sgm
7+
*.sav
8+
*.rtc
9+
*.sn*
10+
*.dat
11+
12+
# rgbds extras
13+
*.sym
14+
*.obj
15+
16+
# precompiled Python
17+
*.pyc
18+
*$py.class
19+
20+
# from github/gitignore/blob/master/Global/Windows.gitignore
21+
# Windows image file caches
22+
Thumbs.db
23+
ehthumbs.db
24+
25+
# Folder config file
26+
Desktop.ini
27+
28+
# Recycle Bin used on file shares
29+
$RECYCLE.BIN/
30+
31+
# Windows shortcuts
32+
*.lnk
33+
*.db
34+
*.bak
35+
36+
# from github/gitignore/blob/master/Global/macOS.gitignore
37+
38+
# General
39+
.DS_Store
40+
.AppleDouble
41+
.LSOverride
42+
43+
# Icon must end with two \r
44+
Icon
45+
46+
# Thumbnails
47+
._*
48+
49+
# Files that might appear in the root of a volume
50+
.DocumentRevisions-V100
51+
.fseventsd
52+
.Spotlight-V100
53+
.TemporaryItems
54+
.Trashes
55+
.VolumeIcon.icns
56+
.com.apple.timemachine.donotpresent
57+
58+
# Directories potentially created on remote AFP share
59+
.AppleDB
60+
.AppleDesktop
61+
Network Trash Folder
62+
Temporary Items
63+
.apdisk
64+
65+
# from github/gitignore/blob/master/Global/Linux.gitignore
66+
67+
*~
68+
69+
# temporary files which can be created if a process still has a handle open of a deleted file
70+
.fuse_hidden*
71+
72+
# KDE directory preferences
73+
.directory
74+
75+
# Linux trash folder which might appear on any partition or disk
76+
.Trash-*
77+
78+
# .nfs files are created when an open file is removed but is still being accessed
79+
.nfs*
80+
81+
################################################################
82+
83+
# Project-specific
84+
85+
# nothing here yet
86+

0 commit comments

Comments
 (0)