diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-09-14 16:42:20 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-09-14 16:42:20 (GMT) |
commit | 88805737f2a709fbffe45f53758427a866664e1c (patch) | |
tree | 45353ed45f05b2286bc059146c28f5a5de133498 | |
parent | 0e6c603dbde531da22b1b65b987b69e463761b4a (diff) | |
download | tk-88805737f2a709fbffe45f53758427a866664e1c.zip tk-88805737f2a709fbffe45f53758427a866664e1c.tar.gz tk-88805737f2a709fbffe45f53758427a866664e1c.tar.bz2 |
Extend .gitattributes and .fossil-settings/encoding-glob for file types .bmp, .cur, .ico and .rc
-rw-r--r-- | .fossil-settings/encoding-glob | 6 | ||||
-rw-r--r-- | .gitattributes | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/.fossil-settings/encoding-glob b/.fossil-settings/encoding-glob index d1fd9fc..d0ad4b9 100644 --- a/.fossil-settings/encoding-glob +++ b/.fossil-settings/encoding-glob @@ -2,4 +2,10 @@ win/buildall.vc.bat win/makefile.vc win/mkd.bat win/rmd.bat +win/rules-ext.vc win/rules.vc +win/targets.vc +win/rc/*.bmp +win/rc/*.cur +win/rc/*.ico +win/rc/*.rc diff --git a/.gitattributes b/.gitattributes index e9a67c8..fe89ab8 100644 --- a/.gitattributes +++ b/.gitattributes @@ -22,15 +22,19 @@ # Declare files that will always have CRLF line endings on checkout. *.bat eol=crlf +*.rc eol=crlf *.sln eol=crlf *.vc eol=crlf # Denote all files that are truly binary and should not be modified. *.a binary +*.bmp binary +*.cur binary *.dll binary *.exe binary *.gif binary *.gz binary +*.ico binary *.jpg binary *.lib binary *.pdf binary |