Private GIT

Skip to content
Snippets Groups Projects
Select Git revision
  • 390276db12627db20e8e99ad3b6811ab8cdf2057
  • master default protected
  • develop
  • add-news
  • torrentz
  • v4.0.31
  • v4.0.30
  • v4.0.29
  • v4.0.28
  • v4.0.27
  • v4.0.26
  • v4.0.25
  • v4.0.24
  • v4.0.23
  • v4.0.22
  • v4.0.21
  • v4.0.20
  • v4.0.19
  • v4.0.18
  • v4.0.17
  • v4.0.16
  • v4.0.15
  • v4.0.14
  • v4.0.13
  • v4.0.12
25 results

.gitattributes

Blame
  • .gitattributes 1.20 KiB
    # Set the default behavior, in case people don't have core.autocrlf set.
    
    # Handle line endings automatically for files detected as text
    # and leave all files detected as binary untouched.
    * text=auto
    
    #
    # The above will handle all files NOT found below
    #
    
    #
    ## These files are text and should be normalized (Convert crlf => lf)
    #
    
    # git config
    .gitattributes	text
    .gitignore		text
    
    # Documentation
    *.md			text
    CHANGES			text
    
    # Startup script
    init.*			text
    
    # Various
    *.ini			text
    *.txt			text
    *.less			text
    *.h				text
    *.in			text
    
    # Python Source files
    *.pxd			text
    *.py 			text
    *.py3 			text
    *.pyw 			text
    *.pyx  			text
    
    # Cheetah template
    *.tmpl			text
    
    # Web file
    *.htm text
    *.html text
    *.css text
    *.js text
    *.xml text
    
    #
    ## These files are binary and should be left untouched
    #
    
    # Python Binary files
    *.db			binary
    *.p 			binary
    *.pkl 			binary
    *.pyc 			binary
    *.pyd			binary
    *.pyo 			binary
    
    # These files are binary and should be left untouched
    # (binary is a macro for -text -diff)
    *.png			binary
    *.jpg			binary
    *.jpeg			binary
    *.gif			binary
    *.ico			binary
    *.swf			binary
    *.gz			binary