diff options
author | jim-p <jimp@pfsense.org> | 2012-12-10 11:20:39 -0500 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2012-12-10 11:21:56 -0500 |
commit | 41ab0d074503b0af501ba18fb56e1a95e4ab536c (patch) | |
tree | 95c2b8a6d487bbe99266abe2d47da6a92bdd41f4 | |
parent | c2483e319682d86dd3992b5bf79b88aafaf682c2 (diff) | |
download | pfsense-41ab0d074503b0af501ba18fb56e1a95e4ab536c.zip pfsense-41ab0d074503b0af501ba18fb56e1a95e4ab536c.tar.gz |
Add .gitattributes file to help maintain proper newlines.
-rw-r--r-- | .gitattributes | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..5a0d4bb --- /dev/null +++ b/.gitattributes @@ -0,0 +1,46 @@ +# Using default template from https://help.github.com/articles/dealing-with-line-endings with modifications. +# Set default behaviour, in case users don't have core.autocrlf set. +* text=auto + +# Explicitly declare text files we want to always be normalized and converted +# to native line endings on checkout. +*.c text +*.h text +*.php text +*.inc text +*.sh text +*.h text +*.md5 text +*.sha256 text +*.conf text +*.xml text +*.ovf text +*.css text +*.htm* text +*.js text +*.diff text +*.patch text +*.pl text +*.rules text +*.txt text +rc.* text +*.sql text +*.mk text + +# Files that will always have CRLF line endings on checkout. (Not sure we have any of these) +# *.dos text eol=crlf + +# Denote all files that are truly binary and should not be modified. +*.png binary +*.jpg binary +*.gif binary +*.so* binary +*.gz binary +*.tgz binary +*.exe binary +*.ico binary +*.img binary +*.zip binary +*.uzip binary +*.tar binary +*.ttf binary
\ No newline at end of file |