config (4769B)
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 = yes 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 password-stores = 23 [helpers] 24 ### Set editor to the command used to invoke your text editor. 25 ### This will override the environment variables that Subversion 26 ### examines by default to find this information ($EDITOR, 27 ### et al). 28 # editor-cmd = editor (vi, emacs, notepad, etc.) 29 ### Set diff-cmd to the absolute path of your 'diff' program. 30 ### This will override the compile-time default, which is to use 31 ### Subversion's internal diff implementation. 32 # diff-cmd = diff_program (diff, gdiff, etc.) 33 ### Set diff3-cmd to the absolute path of your 'diff3' program. 34 ### This will override the compile-time default, which is to use 35 ### Subversion's internal diff3 implementation. 36 # diff3-cmd = diff3_program (diff3, gdiff3, etc.) 37 ### Set diff3-has-program-arg to 'true' or 'yes' if your 'diff3' 38 ### program accepts the '--diff-program' option. 39 # diff3-has-program-arg = [true | false] 40 diff-cmd = colordiff 41 42 ### Section for configuring tunnel agents. 43 [tunnels] 44 ### Configure svn protocol tunnel schemes here. By default, only 45 ### the 'ssh' scheme is defined. You can define other schemes to 46 ### be used with 'svn+scheme://hostname/path' URLs. A scheme 47 ### definition is simply a command, optionally prefixed by an 48 ### environment variable name which can override the command if it 49 ### is defined. The command (or environment variable) may contain 50 ### arguments, using standard shell quoting for arguments with 51 ### spaces. The command will be invoked as: 52 ### <command> <hostname> svnserve -t 53 ### (If the URL includes a username, then the hostname will be 54 ### passed to the tunnel agent as <user>@<hostname>.) If the 55 ### built-in ssh scheme were not predefined, it could be defined 56 ### as: 57 # ssh = $SVN_SSH ssh 58 ### If you wanted to define a new 'rsh' scheme, to be used with 59 ### 'svn+rsh:' URLs, you could do so as follows: 60 # rsh = rsh 61 ### Or, if you wanted to specify a full path and arguments: 62 # rsh = /path/to/rsh -l myusername 63 ### On Windows, if you are specifying a full path to a command, 64 ### use a forward slash (/) or a paired backslash (\\) as the 65 ### path separator. A single backslash will be treated as an 66 ### escape for the following character. 67 68 ### Section for configuring miscelleneous Subversion options. 69 [miscellany] 70 ### Set global-ignores to a set of whitespace-delimited globs 71 ### which Subversion will ignore in its 'status' output, and 72 ### while importing or adding files and directories. 73 # global-ignores = *.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store 74 ### Set log-encoding to the default encoding for log messages 75 # log-encoding = latin1 76 ### Set use-commit-times to make checkout/update/switch/revert 77 ### put last-committed timestamps on every file touched. 78 # use-commit-times = yes 79 ### Set no-unlock to prevent 'svn commit' from automatically 80 ### releasing locks on files. 81 # no-unlock = yes 82 ### Set enable-auto-props to 'yes' to enable automatic properties 83 ### for 'svn add' and 'svn import', it defaults to 'no'. 84 ### Automatic properties are defined in the section 'auto-props'. 85 # enable-auto-props = yes 86 87 ### Section for configuring automatic properties. 88 [auto-props] 89 ### The format of the entries is: 90 ### file-name-pattern = propname[=value][;propname[=value]...] 91 ### The file-name-pattern can contain wildcards (such as '*' and 92 ### '?'). All entries which match will be applied to the file. 93 ### Note that auto-props functionality must be enabled, which 94 ### is typically done by setting the 'enable-auto-props' option. 95 # *.c = svn:eol-style=native 96 # *.cpp = svn:eol-style=native 97 # *.h = svn:eol-style=native 98 # *.dsp = svn:eol-style=CRLF 99 # *.dsw = svn:eol-style=CRLF 100 # *.sh = svn:eol-style=native;svn:executable 101 # *.txt = svn:eol-style=native 102 # *.png = svn:mime-type=image/png 103 # *.jpg = svn:mime-type=image/jpeg 104 # Makefile = svn:eol-style=native 105