mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 07:34:32 +00:00
ef5d3232e4
The last commit to .gitignore caused git to ignore the whole xcode project. Also, the addition of `/` to too many paths means missing things in the pcre2 subdir. Add a bunch of files I found evidence had existed in my checkout at one time or another - and a few things I decided to add after looking over other projects' .gitignores..
42 lines
No EOL
1.4 KiB
Text
42 lines
No EOL
1.4 KiB
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
|
|
.travis.yml export-ignore
|
|
fish.spec.in export-ignore
|
|
/build_tools/make_svn_completions.fish export-ignore
|
|
/build_tools/make_hg_completions.fish export-ignore
|
|
/build_tools/make_vcs_completions.fish export-ignore
|
|
/build_tools/make_vcs_completions_generic.fish export-ignore
|
|
/build_tools/osx_package_resources export-ignore
|
|
/build_tools/osx_package_resources/* export-ignore
|
|
/build_tools/make_csv_completions.fish export-ignore
|
|
/build_tools/osx_distribution.xml export-ignore
|
|
/build_tools/make_tarball.sh export-ignore
|
|
/build_tools/osx_package_scripts export-ignore
|
|
/build_tools/osx_package_scripts/* export-ignore
|
|
/build_tools/make_pkg.sh export-ignore
|
|
/build_tools/make_darcs_completions.fish 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.21/ linguist-vendored
|
|
/pcre2-10.21/* linguist-vendored
|
|
angular.js linguist-vendored
|
|
/doc_src/* linguist-documentation
|
|
*.fish linguist-language=fish
|
|
tests/*.in linguist-language=fish |