Vss2SvnRepository: config

Line 
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 ### Set editor to the command used to invoke your text editor.
23 ###   This will override the environment variables that Subversion
24 ###   examines by default to find this information ($EDITOR,
25 ###   et al).
26 ### Set diff-cmd to the absolute path of your 'diff' program.
27 ###   This will override the compile-time default, which is to use
28 ###   Subversion's internal diff implementation.
29 ### Set diff3-cmd to the absolute path of your 'diff3' program.
30 ###   This will override the compile-time default, which is to use
31 ###   Subversion's internal diff3 implementation.
32 ### Set diff3-has-program-arg to 'true' or 'yes' if your 'diff3'
33 ###   program accepts the '--diff-program' option.
34 # [helpers]
35 # editor-cmd = editor (vi, emacs, notepad, etc.)
36 # diff-cmd = diff_program (diff, gdiff, etc.)
37 # diff3-cmd = diff3_program (diff3, gdiff3, etc.)
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.
70 # global-ignores = *.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store
71 ### Set log-encoding to the default encoding for log messages
72 # log-encoding = latin1
73 ### Set use-commit-times to make checkout/update/switch/revert
74 ### put last-committed timestamps on every file touched.
75 # use-commit-times = yes
76 ### Set enable-auto-props to 'yes' to enable automatic properties
77 ### for 'svn add' and 'svn import', it defaults to 'no'.
78 ### Automatic properties are defined in the section 'auto-props'.
79 enable-auto-props = yes
80
81 ### Section for configuring automatic properties.
82 ### The format of the entries is:
83 ###   file-name-pattern = propname[=value][;propname[=value]...]
84 ### The file-name-pattern can contain wildcards (such as '*' and
85 ### '?').  All entries which match will be applied to the file.
86 ### Note that auto-props functionality must be enabled, which
87 ### is typically done by setting the 'enable-auto-props' option.
88 [auto-props]
89 *.ac = svn:mime-type=text/plain;svn:eol-style=native
90 *.am = svn:mime-type=text/plain;svn:eol-style=native
91 *.c = svn:mime-type=text/plain;svn:eol-style=native
92 *.cpp = svn:mime-type=text/plain;svn:eol-style=native
93 *.h = svn:mime-type=text/plain;svn:eol-style=native
94 *.jpg = svn:mime-type=image/jpeg
95 *.m4 = svn:mime-type=text/plain;svn:eol-style=native
96 *.mk = svn:mime-type=text/plain;svn:eol-style=native
97 *.pl = svn:mime-type=text/plain;svn:eol-style=native
98 *.PL = svn:mime-type=text/plain;svn:eol-style=native
99 *.pm = svn:mime-type=text/plain;svn:eol-style=native
100 *.png = svn:mime-type=image/png
101 *.pod = svn:mime-type=text/plain;svn:eol-style=native
102 *.sh = svn:mime-type=text/plain;svn:eol-style=native;svn:executable
103 *.txt = svn:mime-type=text/plain;svn:eol-style=native
104 *.vcproj = svn:mime-type=text/xml;svn:eol-style=native
105 *.xml = svn:mime-type=text/xml;svn:eol-style=native
106 Makefile = svn:mime-type=text/plain;svn:eol-style=native

PumaCode.org recommends CVSDude for fast, professional Subversion and Trac hosting:

CVSDude.com

These ads are automatically generated by Google. Revenue from these ads helps to pay for hosting this site; however, these ads do not constitute an endorsement by PumaCode.org.