Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C290018FD9 for ; Wed, 4 Nov 2015 09:44:35 +0000 (UTC) Received: (qmail 53289 invoked by uid 500); 4 Nov 2015 09:44:35 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 53261 invoked by uid 500); 4 Nov 2015 09:44:35 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 53252 invoked by uid 99); 4 Nov 2015 09:44:35 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Nov 2015 09:44:35 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 90168DFE61; Wed, 4 Nov 2015 09:44:35 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: daserge@apache.org To: commits@cordova.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: ios commit: CB-9836 Add .gitattributes to prevent CRLF line endings in repos Date: Wed, 4 Nov 2015 09:44:35 +0000 (UTC) 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 Authored: Tue Nov 3 14:07:46 2015 +0300 Committer: daserge 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: commits-unsubscribe@cordova.apache.org For additional commands, e-mail: commits-help@cordova.apache.org