Original file.
[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 ### 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, and
70 ### while importing or adding files and directories.
71 # global-ignores = *.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store
72 ### Set log-encoding to the default encoding for log messages
73 # log-encoding = latin1
74 ### Set use-commit-times to make checkout/update/switch/revert
75 ### put last-committed timestamps on every file touched.
76 # use-commit-times = yes
77 ### Set no-unlock to prevent 'svn commit' from automatically
78 ### releasing locks on files.
79 # no-unlock = yes
80 ### Set enable-auto-props to 'yes' to enable automatic properties
81 ### for 'svn add' and 'svn import', it defaults to 'no'.
82 ### Automatic properties are defined in the section 'auto-props'.
83 # enable-auto-props = yes
84
85 ### Section for configuring automatic properties.
86 [auto-props]
87 ### The format of the entries is:
88 ###   file-name-pattern = propname[=value][;propname[=value]...]
89 ### The file-name-pattern can contain wildcards (such as '*' and
90 ### '?').  All entries which match will be applied to the file.
91 ### Note that auto-props functionality must be enabled, which
92 ### is typically done by setting the 'enable-auto-props' option.
93 # *.c = svn:eol-style=native
94 # *.cpp = svn:eol-style=native
95 # *.h = svn:eol-style=native
96 # *.dsp = svn:eol-style=CRLF
97 # *.dsw = svn:eol-style=CRLF
98 # *.sh = svn:eol-style=native;svn:executable
99 # *.txt = svn:eol-style=native
100 # *.png = svn:mime-type=image/png
101 # *.jpg = svn:mime-type=image/jpeg
102 # Makefile = svn:eol-style=native
103