android_terminal/.gitattributes
Jack Palevich 74d905ff9a Add a .gitattributes file
Hopefully this will reduce merge problems when people on Windows
machines edit text files. (Seems to happen with strings.xml files.)

Enable java-specific diff comments.
2014-01-25 08:25:32 -08:00

15 lines
391 B
Plaintext

# Normalize line endings for text files.
# This only affects how files are stored within the repo. Git will
# automatically convert line endings to the platform choice when checking out,
# and automatically convert them back to the normal form when checking in.
* text=auto
# Ensure XML files are treated a text files.
*.xml text
# Use java diff syntax for java files.
*.java diff=java