Skip to content

Commit 37fce58

Browse files
committed
FIRST COMMIT! #HURRAY!!
0 parents  commit 37fce58

File tree

2 files changed

+84
-0
lines changed

2 files changed

+84
-0
lines changed

.gitattributes

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# allow git to guess types we don't specify
2+
#* text=auto
3+
4+
# Source code
5+
*.c text
6+
*.cs text diff=csharp
7+
*.cpp text diff=cpp
8+
*.java text diff=java
9+
*.py text diff=python
10+
11+
*.htm text diff=html
12+
*.html text diff=html
13+
*.css text diff=css
14+
*.js text
15+
*.md text diff=markdown
16+
17+
# explictly specify most everything
18+
*.cfg text
19+
*.asset text
20+
*.shader text
21+
*.manifest text
22+
*.md text
23+
*.txt text
24+
*.resx text
25+
26+
# Image and other binaries
27+
*.png binary
28+
*.dds binary
29+
*.mu binary
30+
*.dll binary
31+
*.bundle binary
32+
33+
# Compression utilities
34+
*.zip binary
35+
*.7z binary
36+
*.rar binary
37+
*.gz binary
38+
*.bz2 binary
39+
*.lz binary
40+
*.lz4 binary
41+
*.lzo binary
42+
*.lzma binary
43+
*.xz binary
44+
*.z binary
45+
*.Z binary
46+
47+
# Visual Studio
48+
*.sln merge=union
49+
*.csproj merge=union
50+
*.vbproj merge=union
51+
*.fsproj merge=union
52+
*.dbproj merge=union
53+
54+
# Standard to msysgit
55+
*.doc diff=astextplain
56+
*.DOC diff=astextplain
57+
*.docx diff=astextplain
58+
*.DOCX diff=astextplain
59+
*.dot diff=astextplain
60+
*.DOT diff=astextplain
61+
*.pdf diff=astextplain
62+
*.PDF diff=astextplain
63+
*.rtf diff=astextplain
64+
*.RTF diff=astextplain
65+
66+
# More known and most used filetypes
67+
*.csv text
68+
*.fods text diff=html
69+
*.my binary

.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
.vs
2+
Archive
3+
GameData/**/*.dll
4+
GameData/**/LICENSE*
5+
GameData/**/NOTICE
6+
GameData/**/README.md
7+
GameData/**/CHANGE_LOG.md
8+
GameData/**/KNOWN_ISSUES.md
9+
GameData/**/*.version
10+
Source/**/Properties/Version.cs
11+
Source/**/Properties/Configuration.cs
12+
Source/*/*.user
13+
bin
14+
obj
15+
packages

0 commit comments

Comments
 (0)