]> git.donarmstrong.com Git - home-base.git/blob - .subversion/config
update merge r115:HEAD changes
[home-base.git] / .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 ### Set store-password to 'no' to avoid storing your subversion
8 ### passwords in the auth/ area of your config directory.
9 ### It defaults to 'yes'.  Note that this option only prevents
10 ### saving of *new* credentials;  it doesn't invalidate existing
11 ### caches.  (To do that, remove the cache files by hand.)
12 # [auth]
13 # store-password = no
14
15 ### Section for configuring external helper applications.
16 ### Set editor to the command used to invoke your text editor.
17 ###   This will override the environment variables that Subversion
18 ###   examines by default to find this information ($EDITOR, 
19 ###   et al).
20 ### Set diff-cmd to the absolute path of your `diff' program.
21 ###   This will override the compile-time default, which is to use
22 ###   Subversion's internal diff implementation.
23 ### Set diff3-cmd to the absolute path of your `diff3' program.
24 ###   This will override the compile-time default, which is to use
25 ###   Subversion's internal diff3 implementation.
26 ### Set diff3-has-program-arg to `true' or `yes' if your `diff3'
27 ###   program accepts the `--diff-program' option.
28 # [helpers]
29 # editor-cmd = editor (vi, emacs, notepad, etc.)
30 # diff-cmd = diff_program (diff, gdiff, etc.)
31 # diff3-cmd = diff3_program (diff3, gdiff3, etc.)
32 # diff3-has-program-arg = [true | false]
33
34 ### Section for configuring tunnel agents.
35 # [tunnels]
36 ### Configure svn protocol tunnel schemes here.  By default, only
37 ### the `ssh' scheme is defined.  You can define other schemes to
38 ### be used with `svn+scheme://hostname/path' URLs.  A scheme
39 ### definition is simply a command, optionally prefixed by an
40 ### environment variable name which can override the command if it
41 ### is defined.  The command (or environment variable) may contain
42 ### arguments, using standard shell quoting for arguments with
43 ### spaces.  The command will be invoked as:
44 ###   <command> <hostname> svnserve -t
45 ### If the built-in ssh scheme were not predefined, it could be
46 ### defined as:
47 # ssh = $SVN_SSH ssh
48 ### If you wanted to define a new `rsh' scheme, to be used with
49 ### 'svn+rsh:' URLs, you could do so as follows:
50 # rsh = rsh
51 ### Or, if you wanted to specify a full path and arguments:
52 # rsh = /path/to/rsh -l myusername
53 ### On Windows, if you are specifying a full path to a command,
54 ### use a forward slash (/) or a paired backslash (\\) as the
55 ### path separator.  A single backslash will be treated as an
56 ### escape for the following character.
57
58 ### Section for configuring miscelleneous Subversion options.
59 # [miscellany]
60 ### Set global-ignores to a set of whitespace-delimited globs
61 ###   which Subversion will ignore in its `status' output.
62 # global-ignores = *.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store
63 ### Set log-encoding to the default encoding for log messages
64 # log-encoding = latin1
65
66 ### See http://subversion.tigris.org/issues/show_bug.cgi?id=668
67 ### for what else will soon be customized in this file.