Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
micropython/.gitattributes
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
26 lines (23 sloc)
709 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Per default everything gets normalized and gets LF line endings on checkout. | |
* text eol=lf | |
# These will always have CRLF line endings on checkout. | |
*.vcxproj text eol=crlf | |
*.props text eol=crlf | |
*.bat text eol=crlf | |
# These are binary so should never be modified by git. | |
*.a binary | |
*.png binary | |
*.jpg binary | |
*.dxf binary | |
*.mpy binary | |
# These should also not be modified by git. | |
tests/basics/string_cr_conversion.py -text | |
tests/basics/string_crlf_conversion.py -text | |
ports/stm32/pybcdc.inf_template -text | |
ports/stm32/usbhost/** -text | |
ports/cc3200/hal/aes.c -text | |
ports/cc3200/hal/aes.h -text | |
ports/cc3200/hal/des.c -text | |
ports/cc3200/hal/i2s.c -text | |
ports/cc3200/hal/i2s.h -text | |
ports/cc3200/version.h -text |