You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2021/02/07 21:59:06 UTC

[myfaces-tobago] branch master updated: chore: added .gitattribues file

This is an automated email from the ASF dual-hosted git repository.

bommel pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git


The following commit(s) were added to refs/heads/master by this push:
     new 056a865  chore: added .gitattribues file
056a865 is described below

commit 056a865cf5b1f1645a042b5d7bf0ffdb77c1128a
Author: Bernd Bohmann <bo...@apache.org>
AuthorDate: Sun Feb 7 22:58:01 2021 +0100

    chore: added .gitattribues file
---
 .gitattributes | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 49 insertions(+)

diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..5691492
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,49 @@
+# Handle line endings automatically for files detected as text
+# and leave all files detected as binary untouched.
+*               text=auto
+
+#
+# The above will handle all files NOT found below
+#
+# These files are text and should be normalized (Convert crlf => lf)
+.gitignore      text
+.gitattributes  text
+*.md            text
+
+#
+# Exclude files from exporting
+#
+
+.gitattributes  export-ignore
+.gitignore      export-ignore
+.github         export-ignore
+.travis.yml     export-ignore
+Jenkinsfile     export-ignore
+
+# Java sources
+*.java          text diff=java
+
+# These files are text and should be normalized (Convert crlf => lf)
+*.css           text diff=css
+*.scss          text diff=css
+*.df            text
+*.htm           text diff=html
+*.html          text diff=html
+*.js            text
+*.jsp           text
+*.jspf          text
+*.jspx          text
+*.properties    text
+*.tld           text
+*.tag           text
+*.tagx          text
+*.ts            text
+*.sh            text eol=lf
+*.xml           text
+*.dtd           text
+*.xsd           text
+*.xsl           text
+
+# These files are binary and should be left untouched
+# (binary is a macro for -text -diff)
+*.jks           binary
\ No newline at end of file