From 8a04afa9b7c8a1807f1c97d1e1349bb1dc48c00b Mon Sep 17 00:00:00 2001
From: webchick <webchick@24967.no-reply.drupal.org>
Date: Mon, 1 Oct 2012 00:48:50 -0400
Subject: [PATCH] Revert "Issue #1111224 by bfroehle, sun, marvil07, dstol,
 plach, carwin: Introduce .gitattributes to end the CRLF/LF and binary diff
 horror, and detect/auto-fix whitespace errors."

This somehow wreaked all sorts of havoc on the testbots that I don't have time to look into atm because I'm on an emergency layover in Denver. *waves*

This reverts commit c6bfd262e22778f3681118bd920bcebef7fc515f.
---
 .gitattributes | 51 --------------------------------------------------
 1 file changed, 51 deletions(-)
 delete mode 100644 .gitattributes

diff --git a/.gitattributes b/.gitattributes
deleted file mode 100644
index 84f7c47f7713..000000000000
--- a/.gitattributes
+++ /dev/null
@@ -1,51 +0,0 @@
-# Drupal git normalization
-# @see http://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
-# @see http://drupal.org/node/1542048
-
-# Shorthand for text files.
-# - Treat them as text.
-# - Ensure no CRLF line-endings, neither on checkout nor on checkin.
-# - Detect whitespace errors.
-#   - Exposed by default in `git diff --color` on the CLI.
-#   - Validate with `git diff --check`.
-#   - Deny applying with `git apply --whitespace=error-all`.
-#   - Fix automatically with `git apply --whitespace=fix`.
-[attr]drupaltext    text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
-
-# Shorthand for binary files.
-# - Do not treat them as text.
-# - Include binary diff in patches instead of "binary files differ."
-[attr]drupalbinary  -text diff
-
-# Auto-detect text files, ensure they use LF.
-*         text=auto eol=lf
-
-# Define text file attributes.
-*.css     drupaltext
-*.engine  drupaltext diff=php
-*.html    drupaltext diff=html
-*.inc     drupaltext diff=php
-*.info    drupaltext
-*.install drupaltext diff=php
-# There is no diff algorithm for javascript. Java is close for diffing.
-*.js      drupaltext diff=java
-*.json    drupaltext
-*.lock    drupaltext
-*.md      drupaltext
-*.module  drupaltext diff=php
-*.php     drupaltext diff=php
-*.po      drupaltext
-*.script  drupaltext
-*.sh      drupaltext diff=php
-*.sql     drupaltext
-*.test    drupaltext diff=php
-*.txt     drupaltext
-*.xml     drupaltext
-*.yml     drupaltext
-
-# Define binary file attributes.
-*.gif     drupalbinary
-*.gz      drupalbinary
-*.ico     drupalbinary
-*.jpg     drupalbinary
-*.png     drupalbinary
-- 
GitLab