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