1
0
mirror of https://github.com/gitattributes/gitattributes.git synced 2025-01-22 08:18:50 -05:00

Updated comments for web attributes

This commit is contained in:
Adam Smith 2016-05-06 19:36:40 -07:00
parent df6afc76dd
commit 46c0abe4a8

View File

@ -1,17 +1,19 @@
# These settings are for any web project
## GITATTRIBUTES FOR WEB PROJECTS
#
# These settings are for any web project.
#
# Details per file setting:
# text These files should be normalized (i.e. convert CRLF to LF).
# binary These files are binary and should be left untouched.
#
# Note that binary is a macro for -text -diff.
######################################################################
# Handle line endings automatically for files detected as text
# and leave all files detected as binary untouched.
## AUTO-DETECT - Handle line endings automatically for files detected
## as text and leave all files detected as binary untouched.
## This will handle all files NOT defined below.
* text=auto
#
# The above will handle all files NOT found below
#
#
## These files are text and should be normalized (Convert crlf => lf)
#
## SOURCE CODE
*.bat text
*.coffee text
@ -169,9 +171,3 @@ Procfile text
## EXECUTABLES
*.exe binary
*.pyc binary
#
## These files are binary and should be left untouched
#
# (binary is a macro for -text -diff)