.gitattributes 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. # Auto detect text files and perform LF normalization
  2. * text=auto
  3. # Custom for Visual Studio
  4. *.cs text diff=csharp
  5. *.vb text
  6. *.c text
  7. *.cpp text
  8. *.cxx text
  9. *.h text
  10. *.hxx text
  11. *.py text
  12. *.rb text
  13. *.java text
  14. *.html text
  15. *.htm text
  16. *.css text
  17. *.scss text
  18. *.sass text
  19. *.less text
  20. *.js text
  21. *.lisp text
  22. *.clj text
  23. *.sql text
  24. *.php text
  25. *.lua text
  26. *.m text
  27. *.asm text
  28. *.erl text
  29. *.fs text
  30. *.fsx text
  31. *.hs text
  32. *.ps1 text
  33. *.psm1 text
  34. *.md text
  35. *.cmd text
  36. # Visual Studio Project files
  37. *.csproj text merge=union
  38. *.ccproj text merge=union
  39. *.vbproj text merge=union
  40. *.fsproj text merge=union
  41. *.dbproj text merge=union
  42. *.xproj text merge=union
  43. *.sln text eol=crlf merge=union
  44. # Standard to msysgit
  45. *.doc diff=astextplain
  46. *.DOC diff=astextplain
  47. *.docx diff=astextplain
  48. *.DOCX diff=astextplain
  49. *.dot diff=astextplain
  50. *.DOT diff=astextplain
  51. *.pdf diff=astextplain
  52. *.PDF diff=astextplain
  53. *.rtf diff=astextplain
  54. *.RTF diff=astextplain
  55. # Binaries
  56. *.dll binary
  57. *.DLL binary
  58. *.chm binary
  59. *.pdb binary
  60. *.PDB binary
  61. *.exe binary
  62. *.EXE binary
  63. # Certificates
  64. *.pfx binary
  65. *.p12 binary
  66. # Images
  67. *.png binary
  68. *.jpeg binary
  69. *.jpg binary
  70. *.gif binary
  71. *.PNG binary
  72. *.JPEG binary
  73. *.JPG binary
  74. *.GIF binary
  75. # Fonts
  76. *.eot binary
  77. *.otf binary
  78. *.ttf binary
  79. *.woff binary
  80. *.woff2 binary
  81. *.EOT binary
  82. *.OTF binary
  83. *.TTF binary
  84. *.WOFF binary
  85. *.WOFF2 binary