mirror of
				https://github.com/YACReader/yacreader
				synced 2025-10-31 16:25:15 -04:00 
			
		
		
		
	* text=auto does not affect files that already have been commited as CRLF. We need to explicitely set the text attributes for these files to enable line conversion.
		
			
				
	
	
		
			112 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			112 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # List files and directories to exclude from git archive
 | |
| /dependencies/pdfium export-ignore
 | |
| /dependencies/poppler export-ignore
 | |
| /dependencies/qrencode export-ignore
 | |
| /dependencies/unarr export-ignore
 | |
| /dependencies/create-dmg export-ignore
 | |
| .gitignore export-ignore
 | |
| .gitattributes export-ignore
 | |
| 
 | |
| # Auto detect text files and perform LF normalization
 | |
| # http://davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/
 | |
| * text=auto
 | |
| 
 | |
| #
 | |
| # The above will handle all files NOT found below
 | |
| #
 | |
| 
 | |
| # Documents
 | |
| *.doc	 diff=astextplain
 | |
| *.DOC	 diff=astextplain
 | |
| *.docx diff=astextplain
 | |
| *.DOCX diff=astextplain
 | |
| *.dot  diff=astextplain
 | |
| *.DOT  diff=astextplain
 | |
| *.pdf  diff=astextplain
 | |
| *.PDF	 diff=astextplain
 | |
| *.rtf	 diff=astextplain
 | |
| *.RTF	 diff=astextplain
 | |
| *.md text
 | |
| *.adoc text
 | |
| *.textile text
 | |
| *.mustache text
 | |
| *.csv text
 | |
| *.tab text
 | |
| *.tsv text
 | |
| *.sql text
 | |
| *.txt text
 | |
| 
 | |
| # Graphics
 | |
| *.png binary
 | |
| *.jpg binary
 | |
| *.jpeg binary
 | |
| *.gif binary
 | |
| *.tif binary
 | |
| *.tiff binary
 | |
| *.ico binary
 | |
| *.icns binary
 | |
| # SVG treated as an asset (binary) by default. If you want to treat it as text,
 | |
| # comment-out the following line and uncomment the line after.
 | |
| *.svg binary
 | |
| #*.svg text
 | |
| *.eps binary
 | |
| 
 | |
| # Sources
 | |
| *.bat text eol=crlf
 | |
| *.c text
 | |
| *.cc text
 | |
| *.css text
 | |
| *.cxx text
 | |
| *.cpp text
 | |
| *.c++ text
 | |
| *.hpp text
 | |
| *.h text
 | |
| *.h++ text
 | |
| *.hh text
 | |
| *.html text
 | |
| *.m text
 | |
| *.mm text
 | |
| *.patch text
 | |
| *.sh text eol=lf
 | |
| *.tpl text
 | |
| 
 | |
| # Qt specific
 | |
| *.qm text
 | |
| *.qml text
 | |
| *.qrc text
 | |
| *.pro text
 | |
| *.pri text
 | |
| *.rc text
 | |
| *.ts text
 | |
| *.qm text
 | |
| 
 | |
| # Git
 | |
| .gitignore text
 | |
| .gitattributes text
 | |
| 
 | |
| # Compiled Object files
 | |
| *.slo binary
 | |
| *.lo binary
 | |
| *.o binary
 | |
| *.obj binary
 | |
| 
 | |
| # Precompiled Headers
 | |
| *.gch binary
 | |
| *.pch binary
 | |
| 
 | |
| # Compiled Dynamic libraries
 | |
| *.so binary
 | |
| *.dylib binary
 | |
| *.dll binary
 | |
| 
 | |
| # Compiled Static libraries
 | |
| *.lai binary
 | |
| *.la binary
 | |
| *.a binary
 | |
| *.lib binary
 | |
| 
 | |
| # Executables
 | |
| *.exe binary
 | |
| *.out binary
 | |
| *.app binary
 |