You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@corinthia.apache.org by ja...@apache.org on 2015/02/13 09:52:15 UTC

[03/38] incubator-corinthia git commit: Add .gitattributes

Add .gitattributes

The Git attributes are set to adjust line endings between different
clients and the repository form (usually Unix NL instead of CR-LF).


Project: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/commit/2d374505
Tree: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/tree/2d374505
Diff: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/diff/2d374505

Branch: refs/heads/experimentZip
Commit: 2d3745056c41dd0d45484b07580b97713e1dcf52
Parents: a485215
Author: Dennis Hamilton <or...@apache.org>
Authored: Wed Jan 7 11:49:26 2015 -0800
Committer: Dennis Hamilton <or...@apache.org>
Committed: Wed Jan 7 11:49:26 2015 -0800

----------------------------------------------------------------------
 .gitattributes | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/2d374505/.gitattributes
----------------------------------------------------------------------
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..a77dbf0
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,25 @@
+# .gitattributes                       UTF-8
+#
+#           GIT ATTRIBUTES FOR THE CORINTHIA GIT REPOSITORY
+
+# Set the default behavior in case people don't have core.autocrlf set.
+# This will automatically convert between line-ending style of the client
+# and whatever line-ending style that is found in the repository.  (On the
+# client, always use a Git package that is compiled for the native OS.)
+
+* text=auto
+# This declares files to be text by default and to be line-ending alterable.
+# Be careful.  See the group below.
+
+# Denote all files that are truly binary and must not be scanned for line-end.
+# Some of these might also be .gitignored.  Better safe than sorry.
+
+*.bmp binary
+*.jpg binary
+*.png binary
+*.suo binary
+*.zip binary
+
+#                          *** end of .gitattributes ***
+
+