Skip to content

Commit 239b848

Browse files
committed
Initial commit
0 parents  commit 239b848

File tree

2 files changed

+124
-0
lines changed

2 files changed

+124
-0
lines changed

.gitattributes

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# Default: normalize CRLF into LF in non-binary files
2+
# Files identified as binary by Git are not changed
3+
* crlf=auto
4+
5+
# special files
6+
*.sh crlf=input
7+
*.py crlf=input
8+
9+
*.bat text eol=crlf
10+
11+
# Compressed files
12+
*.gz binary
13+
*.sql.gz.* binary
14+
*.GZ binary
15+
*.tar binary
16+
*.TAR binary
17+
*.tgz binary
18+
*.TGZ binary
19+
*.zip binary
20+
*.ZIP binary
21+
*.7z binary
22+
*.7Z binary
23+
*.rar binary
24+
*.RAR binary
25+
*.xz binary
26+
*.XZ binary
27+
28+
# Images
29+
*.jpeg binary
30+
*.JPEG binary
31+
*.jpg binary
32+
*.JPG binary
33+
*.png binary
34+
*.PNG binary
35+
*.gif binary
36+
*.GIF binary
37+
*.psd binary
38+
*.PSD binary
39+
*.ai binary
40+
*.AI binary
41+
*.xcf binary
42+
*.XCF binary
43+
44+
# PDFs
45+
*.pdf binary
46+
*.PDF binary
47+
48+
# MySQL
49+
*.frm binary
50+
*.ibd binary
51+
*.MYD binary
52+
*.MYI binary
53+
*.CSM binary
54+
*.CSV binary
55+
ib_logfile* binary
56+
ib_data* binary
57+
58+
# Font Files
59+
*.ttf binary
60+
*.TTF binary
61+
*.woff binary
62+
*.WOFF binary
63+
*.woff2 binary
64+
*.WOFF2 binary
65+
*.otf binary
66+
*.OTF binary
67+
*.eot binary
68+
*.EOT binary

.gitignore

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
build-ctx/cache/
2+
3+
# =========================
4+
# IDE Files
5+
# =========================
6+
7+
# Netbeans:
8+
nbproject/
9+
# IntelliJ IDEA:
10+
.idea/
11+
12+
# =========================
13+
# Operating System Files
14+
# =========================
15+
16+
# macOS: Finder
17+
.DS_Store
18+
# linux: Dolphin
19+
.directory
20+
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 Installer files
32+
*.cab
33+
*.msi
34+
*.msm
35+
*.msp
36+
37+
# Windows shortcuts
38+
*.lnk
39+
40+
# macOS
41+
.AppleDouble
42+
.LSOverride
43+
44+
# macOS Thumbnails
45+
._*
46+
47+
# macOS files that might appear on external disk
48+
.Spotlight-V100
49+
.Trashes
50+
51+
# macOS directories potentially created on remote AFP share
52+
.AppleDB
53+
.AppleDesktop
54+
Network Trash Folder
55+
Temporary Items
56+
.apdisk

0 commit comments

Comments
 (0)