| 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] |
| 197 | enable-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 | }}} |