subversion config
[dotfiles.git] / scm / .config / subversion / config
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 password stores used by Subversion. They should be
9 ### delimited by spaces or commas. The order of values determines
10 ### the order in which password stores are used.
11 ### Valid password stores:
12 ### gnome-keyring (Unix-like systems)
13 ### kwallet (Unix-like systems)
14 ### gpg-agent (Unix-like systems)
15 ### keychain (Mac OS X)
16 ### windows-cryptoapi (Windows)
17 # password-stores = gpg-agent,gnome-keyring,kwallet
18 ### To disable all password stores, use an empty list:
19 password-stores =
20 ###
21 ### Set KWallet wallet used by Subversion. If empty or unset,
22 ### then the default network wallet will be used.
23 # kwallet-wallet =
24 ###
25 ### Include PID (Process ID) in Subversion application name when
26 ### using KWallet. It defaults to 'no'.
27 # kwallet-svn-application-name-with-pid = yes
28 ###
29 ### Set ssl-client-cert-file-prompt to 'yes' to cause the client
30 ### to prompt for a path to a client cert file when the server
31 ### requests a client cert but no client cert file is found in the
32 ### expected place (see the 'ssl-client-cert-file' option in the
33 ### 'servers' configuration file). Defaults to 'no'.
34 # ssl-client-cert-file-prompt = no
35 ###
36 ### The rest of the [auth] section in this file has been deprecated.
37 ### Both 'store-passwords' and 'store-auth-creds' can now be
38 ### specified in the 'servers' file in your config directory
39 ### and are documented there. Anything specified in this section
40 ### is overridden by settings specified in the 'servers' file.
41 store-passwords = no
42 # store-auth-creds = no
43
44 ### Section for configuring external helper applications.
45 [helpers]
46 ### Set editor-cmd to the command used to invoke your text editor.
47 ### This will override the environment variables that Subversion
48 ### examines by default to find this information ($EDITOR,
49 ### et al).
50 # editor-cmd = editor (vi, emacs, notepad, etc.)
51 ### Set diff-cmd to the absolute path of your 'diff' program.
52 ### This will override the compile-time default, which is to use
53 ### Subversion's internal diff implementation.
54 # diff-cmd = diff_program (diff, gdiff, etc.)
55 ### Diff-extensions are arguments passed to an external diff
56 ### program or to Subversion's internal diff implementation.
57 ### Set diff-extensions to override the default arguments ('-u').
58 # diff-extensions = -u -p
59 ### Set diff3-cmd to the absolute path of your 'diff3' program.
60 ### This will override the compile-time default, which is to use
61 ### Subversion's internal diff3 implementation.
62 # diff3-cmd = diff3_program (diff3, gdiff3, etc.)
63 ### Set diff3-has-program-arg to 'yes' if your 'diff3' program
64 ### accepts the '--diff-program' option.
65 # diff3-has-program-arg = [yes | no]
66 ### Set merge-tool-cmd to the command used to invoke your external
67 ### merging tool of choice. Subversion will pass 5 arguments to
68 ### the specified command: base theirs mine merged wcfile
69 # merge-tool-cmd = merge_command
70
71 ### Section for configuring tunnel agents.
72 [tunnels]
73 ### Configure svn protocol tunnel schemes here. By default, only
74 ### the 'ssh' scheme is defined. You can define other schemes to
75 ### be used with 'svn+scheme://hostname/path' URLs. A scheme
76 ### definition is simply a command, optionally prefixed by an
77 ### environment variable name which can override the command if it
78 ### is defined. The command (or environment variable) may contain
79 ### arguments, using standard shell quoting for arguments with
80 ### spaces. The command will be invoked as:
81 ### <command> <hostname> svnserve -t
82 ### (If the URL includes a username, then the hostname will be
83 ### passed to the tunnel agent as <user>@<hostname>.) If the
84 ### built-in ssh scheme were not predefined, it could be defined
85 ### as:
86 # ssh = $SVN_SSH ssh -q -o ControlMaster=no --
87 ### If you wanted to define a new 'rsh' scheme, to be used with
88 ### 'svn+rsh:' URLs, you could do so as follows:
89 # rsh = rsh --
90 ### Or, if you wanted to specify a full path and arguments:
91 # rsh = /path/to/rsh -l myusername --
92 ### On Windows, if you are specifying a full path to a command,
93 ### use a forward slash (/) or a paired backslash (\\) as the
94 ### path separator. A single backslash will be treated as an
95 ### escape for the following character.
96
97 ### Section for configuring miscellaneous Subversion options.
98 [miscellany]
99 ### Set global-ignores to a set of whitespace-delimited globs
100 ### which Subversion will ignore in its 'status' output, and
101 ### while importing or adding files and directories.
102 ### '*' matches leading dots, e.g. '*.rej' matches '.foo.rej'.
103 # global-ignores = *.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo __pycache__
104 # *.rej *~ #*# .#* .*.swp .DS_Store [Tt]humbs.db
105 ### Set log-encoding to the default encoding for log messages
106 # log-encoding = latin1
107 ### Set use-commit-times to make checkout/update/switch/revert
108 ### put last-committed timestamps on every file touched.
109 # use-commit-times = yes
110 ### Set no-unlock to prevent 'svn commit' from automatically
111 ### releasing locks on files.
112 # no-unlock = yes
113 ### Set mime-types-file to a MIME type registry file, used to
114 ### provide hints to Subversion's MIME type auto-detection
115 ### algorithm.
116 # mime-types-file = /path/to/mime.types
117 ### Set preserved-conflict-file-exts to a whitespace-delimited
118 ### list of patterns matching file extensions which should be
119 ### preserved in generated conflict file names. By default,
120 ### conflict files use custom extensions.
121 # preserved-conflict-file-exts = doc ppt xls od?
122 ### Set enable-auto-props to 'yes' to enable automatic properties
123 ### for 'svn add' and 'svn import', it defaults to 'no'.
124 ### Automatic properties are defined in the section 'auto-props'.
125 # enable-auto-props = yes
126 ### Set interactive-conflicts to 'no' to disable interactive
127 ### conflict resolution prompting. It defaults to 'yes'.
128 # interactive-conflicts = no
129 ### Set memory-cache-size to define the size of the memory cache
130 ### used by the client when accessing a FSFS repository via
131 ### ra_local (the file:// scheme). The value represents the number
132 ### of MB used by the cache.
133 # memory-cache-size = 16
134 ### Set diff-ignore-content-type to 'yes' to cause 'svn diff' to
135 ### attempt to show differences of all modified files regardless
136 ### of their MIME content type. By default, Subversion will only
137 ### attempt to show differences for files believed to have human-
138 ### readable (non-binary) content. This option is especially
139 ### useful when Subversion is configured (via the 'diff-cmd'
140 ### option) to employ an external differencing tool which is able
141 ### to show meaningful differences for binary file formats. [New
142 ### in 1.9]
143 # diff-ignore-content-type = no
144
145 ### Section for configuring automatic properties.
146 [auto-props]
147 ### The format of the entries is:
148 ### file-name-pattern = propname[=value][;propname[=value]...]
149 ### The file-name-pattern can contain wildcards (such as '*' and
150 ### '?'). All entries which match (case-insensitively) will be
151 ### applied to the file. Note that auto-props functionality
152 ### must be enabled, which is typically done by setting the
153 ### 'enable-auto-props' option.
154 # *.c = svn:eol-style=native
155 # *.cpp = svn:eol-style=native
156 # *.h = svn:keywords=Author Date Id Rev URL;svn:eol-style=native
157 # *.dsp = svn:eol-style=CRLF
158 # *.dsw = svn:eol-style=CRLF
159 # *.sh = svn:eol-style=native;svn:executable
160 # *.txt = svn:eol-style=native;svn:keywords=Author Date Id Rev URL;
161 # *.png = svn:mime-type=image/png
162 # *.jpg = svn:mime-type=image/jpeg
163 # Makefile = svn:eol-style=native
164
165 ### Section for configuring working copies.
166 [working-copy]
167 ### Set to a list of the names of specific clients that should use
168 ### exclusive SQLite locking of working copies. This increases the
169 ### performance of the client but prevents concurrent access by
170 ### other clients. Third-party clients may also support this
171 ### option.
172 ### Possible values:
173 ### svn (the command line client)
174 # exclusive-locking-clients =
175 ### Set to true to enable exclusive SQLite locking of working
176 ### copies by all clients using the 1.8 APIs. Enabling this may
177 ### cause some clients to fail to work properly. This does not have
178 ### to be set for exclusive-locking-clients to work.
179 # exclusive-locking = false
180 ### Set the SQLite busy timeout in milliseconds: the maximum time
181 ### the client waits to get access to the SQLite database before
182 ### returning an error. The default is 10000, i.e. 10 seconds.
183 ### Longer values may be useful when exclusive locking is enabled.
184 # busy-timeout = 10000