Changes between Version 63 and Version 64 of UsingGitWithWebKit


Ignore:
Timestamp:
Jan 21, 2011 3:01:02 PM (13 years ago)
Author:
Martin Robinson
Comment:

Added information about proper svn:mime-type configuration

Legend:

Unmodified
Added
Removed
Modified
  • UsingGitWithWebKit

    v63 v64  
    192192}}}
    193193
     194 * If you're committing binary files such as pixel results, you should set the `svn:mime-type` property on those files. You can have SVN do this automatically and git will respect those settings. Put the following in your `~/.subversion/config` file:
     195{{{
     196[miscellany]
     197enable-auto-props = yes
     198
     199# Add an additonal line for each type of binary file you wish to commit.
     200[auto-props]
     201*.jpg = svn:mime-type=image/jpeg
     202*.pdf = svn:mime-type=application/pdf
     203*.png = svn:mime-type=image/png
     204*.webp = svn:mime-type=image/webp
     205}}}
    194206
    195207== Ignores ==