forked from CHEF-KOCH/regtweaks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
42 lines (32 loc) · 1.26 KB
/
.gitattributes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto
*.gitattributes text
.gitignore text
# Exclude files from exporting.
.gitattributes export-ignore
.gitignore export-ignore
# Visual Studio Core ('cause I use it)
#*.xproj text eol=crlf
*.props text eol=crlf
*.filters text eol=crlf
*.vcxitems text eol=crlf
*.vcxproj text eol=crlf
*.vcproj text eol=crlf
# Declare files that will always have CRLF line endings on checkout.
# https://help.github.com/en/articles/dealing-with-line-endings
# https://git-scm.com/book/en/v2/Customizing-Git-Git-Configuration
# https://git-scm.com/docs/gitattributes
*.reg text working-tree-encoding=UTF-16 eol=crlf
*.sh eol=lf
*.ps1 eol=lf
# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
*.exe binary
# In Visual Studio Code set the following (encoding per language):
# https://github.com/Microsoft/vscode/issues/4891
# https://code.visualstudio.com/docs/languages/identifiers
#"[reg]": {
# "files.encoding": "utf16le",
# "files.autoGuessEncoding": true,
#}