forked from bolt/bolt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
37 lines (31 loc) · 967 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
29
30
31
32
33
34
35
36
37
# Default behavior (commit LF, checkout system-dependent) for text files, in
# case people don't have core.autocrlf set.
#
# Note: If you are on Windows and wish to checkout as LF instead of CRLF
# (e.g., you are sharing the working directory with a Unix machine), create
# a new file at "X:\<bolt-path>\.git\info\attributes" containing:
#
# * text=lf -crlf
#
* text=auto
# Explicitly declare text files we want to always be normalized and converted
# to native line endings on checkout.
# (Match dotfiles)
.* text
*.css text
*.dist text
*.html text
*.js text
*.json text
*.md text
*.php text
*.scss text
*.txt text
*.twig text
*.yml text
# When merging just accept the remote compiled CSS file, built from Sass.
# If you have local changes, just rebuild and commit.
app/view/bolt.css* merge=theirs -diff binary
# This setting forces a union merge for the changelog.md file,
# lines will be taken from both sides of the file merge.
changelog.md merge=union