| 1 | ### This file configures various client-side behaviors. |
|---|
| 2 | ### |
|---|
| 3 | ### The commented-out examples below are intended to demonstrate |
|---|
| 4 | ### how to use this file. |
|---|
| 5 | |
|---|
| 6 | ### Section for authentication and authorization customizations. |
|---|
| 7 | [auth] |
|---|
| 8 | ### Set store-passwords to 'no' to avoid storing passwords in the |
|---|
| 9 | ### auth/ area of your config directory. It defaults to 'yes'. |
|---|
| 10 | ### Note that this option only prevents saving of *new* passwords; |
|---|
| 11 | ### it doesn't invalidate existing passwords. (To do that, remove |
|---|
| 12 | ### the cache files by hand as described in the Subversion book.) |
|---|
| 13 | # store-passwords = no |
|---|
| 14 | ### Set store-auth-creds to 'no' to avoid storing any subversion |
|---|
| 15 | ### credentials in the auth/ area of your config directory. |
|---|
| 16 | ### It defaults to 'yes'. Note that this option only prevents |
|---|
| 17 | ### saving of *new* credentials; it doesn't invalidate existing |
|---|
| 18 | ### caches. (To do that, remove the cache files by hand.) |
|---|
| 19 | # store-auth-creds = no |
|---|
| 20 | |
|---|
| 21 | ### Section for configuring external helper applications. |
|---|
| 22 | [helpers] |
|---|
| 23 | ### Set editor to the command used to invoke your text editor. |
|---|
| 24 | ### This will override the environment variables that Subversion |
|---|
| 25 | ### examines by default to find this information ($EDITOR, |
|---|
| 26 | ### et al). |
|---|
| 27 | # editor-cmd = editor (vi, emacs, notepad, etc.) |
|---|
| 28 | ### Set diff-cmd to the absolute path of your 'diff' program. |
|---|
| 29 | ### This will override the compile-time default, which is to use |
|---|
| 30 | ### Subversion's internal diff implementation. |
|---|
| 31 | # diff-cmd = diff_program (diff, gdiff, etc.) |
|---|
| 32 | ### Set diff3-cmd to the absolute path of your 'diff3' program. |
|---|
| 33 | ### This will override the compile-time default, which is to use |
|---|
| 34 | ### Subversion's internal diff3 implementation. |
|---|
| 35 | # diff3-cmd = diff3_program (diff3, gdiff3, etc.) |
|---|
| 36 | ### Set diff3-has-program-arg to 'true' or 'yes' if your 'diff3' |
|---|
| 37 | ### program accepts the '--diff-program' option. |
|---|
| 38 | # diff3-has-program-arg = [true | false] |
|---|
| 39 | |
|---|
| 40 | ### Section for configuring tunnel agents. |
|---|
| 41 | [tunnels] |
|---|
| 42 | ### Configure svn protocol tunnel schemes here. By default, only |
|---|
| 43 | ### the 'ssh' scheme is defined. You can define other schemes to |
|---|
| 44 | ### be used with 'svn+scheme://hostname/path' URLs. A scheme |
|---|
| 45 | ### definition is simply a command, optionally prefixed by an |
|---|
| 46 | ### environment variable name which can override the command if it |
|---|
| 47 | ### is defined. The command (or environment variable) may contain |
|---|
| 48 | ### arguments, using standard shell quoting for arguments with |
|---|
| 49 | ### spaces. The command will be invoked as: |
|---|
| 50 | ### <command> <hostname> svnserve -t |
|---|
| 51 | ### (If the URL includes a username, then the hostname will be |
|---|
| 52 | ### passed to the tunnel agent as <user>@<hostname>.) If the |
|---|
| 53 | ### built-in ssh scheme were not predefined, it could be defined |
|---|
| 54 | ### as: |
|---|
| 55 | # ssh = $SVN_SSH ssh |
|---|
| 56 | ### If you wanted to define a new 'rsh' scheme, to be used with |
|---|
| 57 | ### 'svn+rsh:' URLs, you could do so as follows: |
|---|
| 58 | # rsh = rsh |
|---|
| 59 | ### Or, if you wanted to specify a full path and arguments: |
|---|
| 60 | # rsh = /path/to/rsh -l myusername |
|---|
| 61 | ### On Windows, if you are specifying a full path to a command, |
|---|
| 62 | ### use a forward slash (/) or a paired backslash (\\) as the |
|---|
| 63 | ### path separator. A single backslash will be treated as an |
|---|
| 64 | ### escape for the following character. |
|---|
| 65 | |
|---|
| 66 | ### Section for configuring miscelleneous Subversion options. |
|---|
| 67 | [miscellany] |
|---|
| 68 | ### Set global-ignores to a set of whitespace-delimited globs |
|---|
| 69 | ### which Subversion will ignore in its 'status' output. |
|---|
| 70 | # global-ignores = *.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store |
|---|
| 71 | ### Set log-encoding to the default encoding for log messages |
|---|
| 72 | # log-encoding = latin1 |
|---|
| 73 | ### Set use-commit-times to make checkout/update/switch/revert |
|---|
| 74 | ### put last-committed timestamps on every file touched. |
|---|
| 75 | # use-commit-times = yes |
|---|
| 76 | ### Set no-unlock to prevent 'svn commit' from automatically |
|---|
| 77 | ### releasing locks on files. |
|---|
| 78 | # no-unlock = yes |
|---|
| 79 | ### Set enable-auto-props to 'yes' to enable automatic properties |
|---|
| 80 | ### for 'svn add' and 'svn import', it defaults to 'no'. |
|---|
| 81 | ### Automatic properties are defined in the section 'auto-props'. |
|---|
| 82 | enable-auto-props = yes |
|---|
| 83 | |
|---|
| 84 | ### Section for configuring automatic properties. |
|---|
| 85 | [auto-props] |
|---|
| 86 | ### The format of the entries is: |
|---|
| 87 | ### file-name-pattern = propname[=value][;propname[=value]...] |
|---|
| 88 | ### The file-name-pattern can contain wildcards (such as '*' and |
|---|
| 89 | ### '?'). All entries which match will be applied to the file. |
|---|
| 90 | ### Note that auto-props functionality must be enabled, which |
|---|
| 91 | ### is typically done by setting the 'enable-auto-props' option. |
|---|
| 92 | *.c = svn:eol-style=native |
|---|
| 93 | *.cpp = svn:eol-style=native |
|---|
| 94 | *.h = svn:eol-style=native |
|---|
| 95 | *.i = svn:eol-style=native |
|---|
| 96 | *.txt = svn:eol-style=native |
|---|
| 97 | *.ascii = svn:eol-style=native |
|---|
| 98 | *.list = svn:eol-style=native |
|---|
| 99 | *.htm = svn:eol-style=native |
|---|
| 100 | *.html = svn:eol-style=native |
|---|
| 101 | *.lnt = svn:eol-style=native |
|---|
| 102 | *.dat = svn:eol-style=native |
|---|
| 103 | *.in = svn:eol-style=native |
|---|
| 104 | *.ini = svn:eol-style=native |
|---|
| 105 | *.szd = svn:eol-style=native |
|---|
| 106 | *.rfi = svn:eol-style=native |
|---|
| 107 | *.mix = svn:eol-style=native |
|---|
| 108 | *.opc = svn:eol-style=native |
|---|
| 109 | *.tex = svn:eol-style=native |
|---|
| 110 | *.ps = svn:eol-style=native |
|---|
| 111 | *.eps = svn:eol-style=native |
|---|
| 112 | *.sty = svn:eol-style=native |
|---|
| 113 | *.bib = svn:eol-style=native |
|---|
| 114 | *.csv = svn:eol-style=native |
|---|
| 115 | *.elvlc = svn:eol-style=native |
|---|
| 116 | *.fblvl = svn:eol-style=native |
|---|
| 117 | *.reclvl = svn:eol-style=native |
|---|
| 118 | *.splups = svn:eol-style=native |
|---|
| 119 | *.psplups = svn:eol-style=native |
|---|
| 120 | *.wgfa = svn:eol-style=native |
|---|
| 121 | *.area = svn:eol-style=native |
|---|
| 122 | *.ions = svn:eol-style=native |
|---|
| 123 | *.abund = svn:eol-style=native |
|---|
| 124 | *.ioneq = svn:eol-style=native |
|---|
| 125 | *.dem = svn:eol-style=native |
|---|
| 126 | *.cilvl = svn:eol-style=native |
|---|
| 127 | *.v5 = svn:eol-style=native |
|---|
| 128 | *.1po = svn:eol-style=native |
|---|
| 129 | *.1se = svn:eol-style=native |
|---|
| 130 | *.1fo = svn:eol-style=native |
|---|
| 131 | *.1ge = svn:eol-style=native |
|---|
| 132 | *.1de = svn:eol-style=native |
|---|
| 133 | *.3po = svn:eol-style=native |
|---|
| 134 | *.3se = svn:eol-style=native |
|---|
| 135 | *.3fo = svn:eol-style=native |
|---|
| 136 | *.3ge = svn:eol-style=native |
|---|
| 137 | *.3de = svn:eol-style=native |
|---|
| 138 | *.ip = svn:eol-style=native |
|---|
| 139 | *.lua = svn:eol-style=native |
|---|
| 140 | *.sln = svn:eol-style=native |
|---|
| 141 | *.vcproj = svn:eol-style=native |
|---|
| 142 | *.pl = svn:eol-style=native;svn:executable |
|---|
| 143 | *.ai = svn:mime-type=application/octet-stream |
|---|
| 144 | *.psd = svn:mime-type=application/octet-stream |
|---|
| 145 | *.pdf = svn:mime-type=application/octet-stream |
|---|
| 146 | Makefile* = svn:eol-style=native |
|---|
| 147 | Doxyfile* = svn:eol-style=native |
|---|
| 148 | COPYING* = svn:eol-style=native |
|---|
| 149 | README* = svn:eol-style=native |
|---|
| 150 | VERSION* = svn:eol-style=native |
|---|