.gitattributes raw

   1  # Git repo attributes.
   2  
   3  # Ensure shell and configure-related files have LF enforced.
   4  *.ac text eol=lf
   5  *.am text eol=lf
   6  *.m4 text eol=lf
   7  *.sh text eol=lf
   8  
   9  # Ensure all text files have normalized line endings in the repository.
  10  * text=auto
  11  
  12  # These files should use CR/LF line ending:
  13  /digimars.mak -text
  14  
  15  # Note: "core.eol" configuration variable controls which line endings to use
  16  # for the normalized files in the working directory (the default is native).
  17