### Section for configuring miscelleneous Subversion options. [miscellany] ### Set global-ignores to a set of whitespace-delimited globs ### which Subversion will ignore in its 'status' output. global-ignores = *.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store ### Set use-commit-times to make checkout/update/switch/revert ### put last-committed timestamps on every file touched. use-commit-times = yes ### Set enable-auto-props to 'yes' to enable automatic properties ### for 'svn add' and 'svn import', it defaults to 'no'. ### Automatic properties are defined in the section 'auto-props'. enable-auto-props = yes ### Section for configuring automatic properties. [auto-props] ### The format of the entries is: ### file-name-pattern = propname[=value][;propname[=value]...] ### The file-name-pattern can contain wildcards (such as '*' and ### '?'). All entries which match will be applied to the file. ### Note that auto-props functionality must be enabled, which ### is typically done by setting the 'enable-auto-props' option. *.c = svn:eol-style=native *.cpp = svn:eol-style=native *.h = svn:eol-style=native *.sh = svn:eol-style=native;svn:executable *.txt = svn:eol-style=native *.png = svn:mime-type=image/png *.jpg = svn:mime-type=image/jpeg Makefile = svn:eol-style=native # Other project files *.lib = svn:eol-style=native;svn:executable *.php = svn:mime-type=text/plain;svn:eol-style=native *.cfg = svn:mime-type=text/plain;svn:eol-style=native *.config = svn:mime-type=text/plain;svn:eol-style=native *.html = svn:mime-type=text/html;svn:eol-style=native *.css = svn:mime-type=text/css;svn:eol-style=native *.js = svn:mime-type=text/plain;svn:eol-style=native *.txt = svn:mime-type=text/plain;svn:eol-style=native *.sql = svn:mime-type=text/plain;svn:eol-style=native *.exe = svn:mime-type=application/octet-stream *.odp = svn:mime-type=application/vnd.oasis.opendocument.presentation *.odt = svn:mime-type=application/vnd.oasis.opendocument.text *.pdf = svn:mime-type=application/pdf *.tgz = svn:mime-type=application/x-gtar *.gz = svn:mime-type=application/x-gtar