Repository: cordova-ios Updated Branches: refs/heads/master 0ec2949d9 -> 7682bfeec
CB-9836 Add .gitattributes to prevent CRLF line endings in repos Updates gitattributes to common web project template to help git recognize binary files Project: http://git-wip-us.apache.org/repos/asf/cordova-ios/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-ios/commit/7682bfee Tree: http://git-wip-us.apache.org/repos/asf/cordova-ios/tree/7682bfee Diff: http://git-wip-us.apache.org/repos/asf/cordova-ios/diff/7682bfee Branch: refs/heads/master Commit: 7682bfeecc7a7adaa866ee2b946dcbe3a2696922 Parents: 0ec2949 Author: daserge <[email protected]> Authored: Tue Nov 3 14:07:46 2015 +0300 Committer: daserge <[email protected]> Committed: Tue Nov 3 14:08:50 2015 +0300 ---------------------------------------------------------------------- .gitattributes | 93 ++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 92 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/7682bfee/.gitattributes ---------------------------------------------------------------------- diff --git a/.gitattributes b/.gitattributes index ea69395..f63e59a 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,94 @@ * text eol=lf -*.jpg binary + +# source code +*.php text +*.css text +*.sass text +*.scss text +*.less text +*.styl text +*.js text +*.coffee text +*.json text +*.htm text +*.html text +*.xml text +*.svg text +*.txt text +*.ini text +*.inc text +*.pl text +*.rb text +*.py text +*.scm text +*.sql text +*.sh text +*.bat text + +# templates +*.ejs text +*.hbt text +*.jade text +*.haml text +*.hbs text +*.dot text +*.tmpl text +*.phtml text + +# server config +.htaccess text + +# git config +.gitattributes text +.gitignore text +.gitconfig text + +# code analysis config +.jshintrc text +.jscsrc text +.jshintignore text +.csslintrc text + +# misc config +*.yaml text +*.yml text +.editorconfig text + +# build config +*.npmignore text +*.bowerrc text + +# Heroku +Procfile text +.slugignore text + +# Documentation +*.md text +LICENSE text +AUTHORS text + + +# +## These files are binary and should be left untouched +# + +# (binary is a macro for -text -diff) *.png binary +*.jpg binary +*.jpeg binary +*.gif binary +*.ico binary +*.mov binary +*.mp4 binary +*.mp3 binary +*.flv binary +*.fla binary +*.swf binary +*.gz binary +*.zip binary +*.7z binary +*.ttf binary +*.eot binary +*.woff binary +*.pyc binary +*.pdf binary --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
