Skip to content

Commit 949842d

Browse files
author
Zhang Peng
committed
🎉 Initial git configuration files.
1 parent 2fec872 commit 949842d

2 files changed

Lines changed: 101 additions & 0 deletions

File tree

.gitattributes

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
* text=auto eol=lf
2+
3+
# plan text
4+
*.txt text
5+
*.java text
6+
*.scala text
7+
*.groovy text
8+
*.gradle text
9+
*.xml text
10+
*.xsd text
11+
*.tld text
12+
*.yaml text
13+
*.yml text
14+
*.wsdd text
15+
*.wsdl text
16+
*.jsp text
17+
*.jspf text
18+
*.js text
19+
*.jsx text
20+
*.json text
21+
*.css text
22+
*.less text
23+
*.sql text
24+
*.properties text
25+
26+
# unix style
27+
*.sh text eol=lf
28+
29+
# win style
30+
*.bat text eol=crlf
31+
32+
# don't handle
33+
*.der -text
34+
*.jks -text
35+
*.pfx -text
36+
*.map -text
37+
*.patch -text
38+
*.dat -text
39+
*.data -text
40+
*.db -text
41+
42+
# binary
43+
*.jar binary
44+
*.war binary
45+
*.zip binary
46+
*.tar binary
47+
*.tar.gz binary
48+
*.gz binary
49+
*.apk binary
50+
*.bin binary
51+
*.exe binary
52+
53+
# images
54+
*.png binary
55+
*.jpg binary
56+
*.ico binary
57+
*.gif binary
58+
59+
# media
60+
*.mp3 binary
61+
*.swf binary
62+
63+
# fonts
64+
*.eot binary
65+
*.svg binary
66+
*.ttf binary
67+
*.woff binary
68+
69+
# others
70+
*.pdf binary
71+
*.doc binary
72+
*.docx binary
73+
*.xls binary
74+
*.xlsx binary
75+
*.xmind binary

.gitignore

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
################ Javascript ################
2+
# dependencies
3+
node_modules
4+
5+
# temp folders
6+
build
7+
dist
8+
_book
9+
_jsdoc
10+
11+
# temp files
12+
*.log
13+
npm-debug.log*
14+
yarn-debug.log*
15+
yarn-error.log*
16+
bundle*.js
17+
18+
19+
################ IDEA ################
20+
.idea
21+
*.iml
22+
23+
24+
################ Eclipse ################
25+
.classpath
26+
.project

0 commit comments

Comments
 (0)