-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy path.gitattributes
28 lines (24 loc) · 896 Bytes
/
.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
# Copyright (c) 2016-present Sven Greb <development@svengreb.de>
# This source code is licensed under the MIT license found in the license file.
# Configuration to define attributes per path.
# References:
# 1. https://git-scm.com/docs/gitattributes
# 2. https://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes#Keyword-Expansion
# 3. https://github.com/AGWA/git-crypt
# 4. https://www.gnupg.org
# 5. https://wiki.archlinux.org/index.php/GnuPG
# Automatically perform line feed (LF) normalization for files detected as text and
# leave all files detected as binary untouched.
* text=auto eol=lf
# +--------+
# + Assets +
# +--------+
*.ai binary
*.png binary
# +------------+
# + Encryption +
# +------------+
.gatsby/.env.development filter=git-crypt diff=git-crypt
.gatsby/.env.production filter=git-crypt diff=git-crypt
.gitattributes !filter !diff
.gitignore !filter !diff