mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 09:27:38 +00:00
09cff3f4fe
Most of these tools are actually useful even without a git tree present.
28 lines
742 B
Text
28 lines
742 B
Text
# normalize newlines
|
|
* text=auto
|
|
*.fish text
|
|
*.bat eol=crlf
|
|
|
|
# let git show off diff hunk headers, help git diff -L:
|
|
# https://git-scm.com/docs/gitattributes
|
|
*.cpp diff=cpp
|
|
*.py diff=py
|
|
# add a [diff "fish"] to git config with pattern
|
|
*.fish diff=fish
|
|
|
|
# omit from git archive
|
|
.gitattributes export-ignore
|
|
.gitignore export-ignore
|
|
/build_tools/make_tarball.sh export-ignore
|
|
/debian export-ignore
|
|
/debian/* export-ignore
|
|
/.github export-ignore
|
|
/.github/* export-ignore
|
|
|
|
# for linguist; let github identify our project as C++ instead of C due to pcre2
|
|
/pcre2-10.22/ linguist-vendored
|
|
/pcre2-10.22/* linguist-vendored
|
|
angular.js linguist-vendored
|
|
/doc_src/* linguist-documentation
|
|
*.fish linguist-language=fish
|
|
tests/*.in linguist-language=fish
|