Gitattributes Fix

This commit is contained in:
Enner Pérez 2024-03-20 02:33:19 -05:00
parent de1bb4b8e1
commit 8bc8f1eaa2

108
.gitattributes vendored
View file

@ -1,44 +1,78 @@
############################### # Auto detect text files and perform LF normalization
# Git Line Endings # # https://www.davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/
###############################
# Set default behaviour to automatically normalize line endings.
* text=auto * text=auto
# Force batch scripts to always use CRLF line endings so that if a repo is accessed #
# in Windows via a file share from Linux, the scripts will work. # The above will handle all files NOT found below
*.{cmd,[cC][mM][dD]} text eol=crlf #
*.{bat,[bB][aA][tT]} text eol=crlf
# Force bash scripts to always use LF line endings so that if a repo is accessed
# in Unix via a file share from Windows, the scripts will work.
*.sh text eol=lf
###############################
# Git Large File System (LFS) #
###############################
# Archives
*.7z filter=lfs diff=lfs merge=lfs -text
*.br filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.tar filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
# Documents # Documents
*.pdf filter=lfs diff=lfs merge=lfs -text *.bibtex text diff=bibtex
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
*.md text
*.tex text diff=tex
*.adoc text
*.textile text
*.mustache text
*.csv text
*.tab text
*.tsv text
*.txt text
*.sql text
# Images # Graphics
*.gif filter=lfs diff=lfs merge=lfs -text *.png binary
*.ico filter=lfs diff=lfs merge=lfs -text *.jpg binary
*.jpg filter=lfs diff=lfs merge=lfs -text *.jpeg binary
*.pdf filter=lfs diff=lfs merge=lfs -text *.gif binary
*.png filter=lfs diff=lfs merge=lfs -text *.tif binary
*.psd filter=lfs diff=lfs merge=lfs -text *.tiff binary
*.webp filter=lfs diff=lfs merge=lfs -text *.ico binary
# SVG treated as an asset (binary) by default.
*.svg text
# If you want to treat it as binary,
# use the following line instead.
# *.svg binary
*.eps binary
# Fonts # Scripts
*.woff2 filter=lfs diff=lfs merge=lfs -text *.bash text eol=lf
*.fish text eol=lf
*.sh text eol=lf
# These are explicitly windows files and should use crlf
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# Other # Serialisation
*.exe filter=lfs diff=lfs merge=lfs -text *.json text
*.toml text
*.xml text
*.yaml text
*.yml text
# Archives
*.7z binary
*.gz binary
*.tar binary
*.tgz binary
*.zip binary
# Text files where line endings should be preserved
*.patch -text
#
# Exclude files from exporting
#
.gitattributes export-ignore
.gitignore export-ignore