Skip to content

Commit be8b593

Browse files
committedDec 9, 2016
Add .gitignore & .gitattributes files
1 parent 9a75f4b commit be8b593

File tree

2 files changed

+87
-0
lines changed

2 files changed

+87
-0
lines changed
 

‎.gitattributes

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
###############################################################################
2+
# Set default behavior to automatically normalize line endings.
3+
###############################################################################
4+
* text=auto
5+
6+
###############################################################################
7+
# Make sh files under the build directory always have LF as line endings
8+
###############################################################################
9+
build/*.sh eol=lf
10+
11+
12+
###############################################################################
13+
# Set default behavior for command prompt diff.
14+
#
15+
# This is need for earlier builds of msysgit that does not have it on by
16+
# default for csharp files.
17+
# Note: This is only used by command line
18+
###############################################################################
19+
#*.cs diff=csharp
20+
21+
###############################################################################
22+
# Set the merge driver for project and solution files
23+
#
24+
# Merging from the command prompt will add diff markers to the files if there
25+
# are conflicts (Merging from VS is not affected by the settings below, in VS
26+
# the diff markers are never inserted). Diff markers may cause the following
27+
# file extensions to fail to load in VS. An alternative would be to treat
28+
# these files as binary and thus will always conflict and require user
29+
# intervention with every merge. To do so, just uncomment the entries below
30+
###############################################################################
31+
#*.sln merge=binary
32+
#*.csproj merge=binary
33+
#*.vbproj merge=binary
34+
#*.vcxproj merge=binary
35+
#*.vcproj merge=binary
36+
#*.dbproj merge=binary
37+
#*.fsproj merge=binary
38+
#*.lsproj merge=binary
39+
#*.wixproj merge=binary
40+
#*.modelproj merge=binary
41+
#*.sqlproj merge=binary
42+
#*.wwaproj merge=binary
43+
44+
###############################################################################
45+
# behavior for image files
46+
#
47+
# image files are treated as binary by default.
48+
###############################################################################
49+
#*.jpg binary
50+
#*.png binary
51+
#*.gif binary
52+
53+
###############################################################################
54+
# diff behavior for common document formats
55+
#
56+
# Convert binary document formats to text before diffing them. This feature
57+
# is only available from the command line. Turn it on by uncommenting the
58+
# entries below.
59+
###############################################################################
60+
#*.doc diff=astextplain
61+
#*.DOC diff=astextplain
62+
#*.docx diff=astextplain
63+
#*.DOCX diff=astextplain
64+
#*.dot diff=astextplain
65+
#*.DOT diff=astextplain
66+
#*.pdf diff=astextplain
67+
#*.PDF diff=astextplain
68+
#*.rtf diff=astextplain
69+
#*.RTF diff=astextplain

‎.gitignore

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
bin
2+
obj
3+
*.suo
4+
*.user
5+
_ReSharper.*
6+
*.DS_Store
7+
*.userprefs
8+
*.pidb
9+
*.vspx
10+
*.psess
11+
packages
12+
target
13+
artifacts
14+
StyleCop.Cache
15+
node_modules
16+
*.snk
17+
.nuget/NuGet.exe
18+
project.lock.json

0 commit comments

Comments
 (0)
Please sign in to comment.