-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitattributes
59 lines (53 loc) · 2.61 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Normalise line endings automatically for files detected as text by default.
# That is: let the git installation on a user's machine decide
# which line ending to use when a repository is checked out.
# Subsequent lines may override this setting.
* text=auto
# recognise file syntax during diff
*.hpp text diff=cpp
*.cpp text diff=cpp
*.tex text diff=tex
*.bib text diff=bibtex
*.md text diff=markdown
*.sh text diff=bash
# force batch scripts to always use CRLF
*.cmd text eol=crlf
*.bat text eol=crlf
# force bash scripts & Makefile to always use LF
*.sh text eol=lf
Makefile text eol=lf
# mark binary files explicitly
# (Git does not try to merge these files)
# binary is a built-in macro attribute == -diff -merge -text
*.png binary
# specify which files/dirs to ignore on [download ZIP] (not a git repo)
.github export-ignore
.test export-ignore
docs export-ignore
img export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.gitpod.dockerfile export-ignore
.gitpod.yml export-ignore
.pre-commit-config.yaml export-ignore
CODE_OF_CONDUCT.md export-ignore
codecov.yml export-ignore
CODEOWNERS export-ignore
CONTRIBUTING.md export-ignore
Doxyfile export-ignore
environment.yml export-ignore
Makefile export-ignore
meta.yaml export-ignore
paper.bib export-ignore
paper.md export-ignore
# linguist settings:
#
# Gitpod configuration files
.gitpod.dockerfile -linguist-detectable
.gitpod.yml -linguist-detectable
# Dev Docker/env
Dockerfile -linguist-detectable
entrypoint.sh -linguist-detectable
environment.yml -linguist-detectable
# Catch2 test framework
.test/unit/catch.hpp -linguist-detectable