.gitattributes 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. #common settings that generally should always be used with your language specific settings
  2. # Auto detect text files and perform LF normalization
  3. # http://davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/
  4. * text=auto
  5. #
  6. # The above will handle all files NOT found below
  7. #
  8. # Documents
  9. *.doc diff=astextplain
  10. *.DOC diff=astextplain
  11. *.docx diff=astextplain
  12. *.DOCX diff=astextplain
  13. *.dot diff=astextplain
  14. *.DOT diff=astextplain
  15. *.pdf diff=astextplain
  16. *.PDF diff=astextplain
  17. *.rtf diff=astextplain
  18. *.RTF diff=astextplain
  19. *.md text
  20. *.adoc text
  21. *.textile text
  22. *.mustache text
  23. *.csv text
  24. *.tab text
  25. *.tsv text
  26. *.sql text
  27. # Graphics
  28. *.png binary
  29. *.jpg binary
  30. *.jpeg binary
  31. *.gif binary
  32. *.tif binary
  33. *.tiff binary
  34. *.ico binary
  35. *.svg binary
  36. *.eps binary
  37. #sources
  38. *.C text
  39. *.cc text
  40. *.cxx text
  41. *.cpp text
  42. *.c++ text
  43. *.c text
  44. *.hpp text
  45. *.h text
  46. *.h++ text
  47. *.hh text
  48. # Compiled Object files
  49. *.slo binary
  50. *.lo binary
  51. *.o binary
  52. *.obj binary
  53. # Precompiled Headers
  54. *.gch binary
  55. *.pch binary
  56. # Compiled Dynamic libraries
  57. *.so binary
  58. *.dylib binary
  59. *.dll binary
  60. # Compiled Static libraries
  61. *.lai binary
  62. *.la binary
  63. *.a binary
  64. *.lib binary
  65. # Executables
  66. *.exe binary
  67. *.out binary
  68. *.app binary