source: src/main/java/genius/gui/tournamentvars/h__/Application data/Subversion/config

Last change on this file was 1, checked in by Wouter Pasman, 7 years ago

Initial import : Genius 9.0.0

File size: 6.2 KB
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 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### keychain (Mac OS X)
15### windows-cryptoapi (Windows)
16# password-stores = keychain
17### To disable all password stores, use an empty list:
18# password-stores =
19###
20### The rest of the [auth] section in this file has been deprecated.
21### Both 'store-passwords' and 'store-auth-creds' can now be
22### specified in the 'servers' file in your config directory
23### and are documented there. Anything specified in this section
24### is overridden by settings specified in the 'servers' file.
25# store-passwords = no
26# store-auth-creds = no
27
28### Section for configuring external helper applications.
29[helpers]
30### Set editor-cmd to the command used to invoke your text editor.
31### This will override the environment variables that Subversion
32### examines by default to find this information ($EDITOR,
33### et al).
34# editor-cmd = editor (vi, emacs, notepad, etc.)
35### Set diff-cmd to the absolute path of your 'diff' program.
36### This will override the compile-time default, which is to use
37### Subversion's internal diff implementation.
38# diff-cmd = diff_program (diff, gdiff, etc.)
39### Diff-extensions are arguments passed to an external diff
40### program or to Subversion's internal diff implementation.
41### Set diff-extensions to override the default arguments ('-u').
42# diff-extensions = -u -p
43### Set diff3-cmd to the absolute path of your 'diff3' program.
44### This will override the compile-time default, which is to use
45### Subversion's internal diff3 implementation.
46# diff3-cmd = diff3_program (diff3, gdiff3, etc.)
47### Set diff3-has-program-arg to 'yes' if your 'diff3' program
48### accepts the '--diff-program' option.
49# diff3-has-program-arg = [yes | no]
50### Set merge-tool-cmd to the command used to invoke your external
51### merging tool of choice. Subversion will pass 5 arguments to
52### the specified command: base theirs mine merged wcfile
53# merge-tool-cmd = merge_command
54
55### Section for configuring tunnel agents.
56[tunnels]
57### Configure svn protocol tunnel schemes here. By default, only
58### the 'ssh' scheme is defined. You can define other schemes to
59### be used with 'svn+scheme://hostname/path' URLs. A scheme
60### definition is simply a command, optionally prefixed by an
61### environment variable name which can override the command if it
62### is defined. The command (or environment variable) may contain
63### arguments, using standard shell quoting for arguments with
64### spaces. The command will be invoked as:
65### <command> <hostname> svnserve -t
66### (If the URL includes a username, then the hostname will be
67### passed to the tunnel agent as <user>@<hostname>.) If the
68### built-in ssh scheme were not predefined, it could be defined
69### as:
70# ssh = $SVN_SSH ssh -q
71### If you wanted to define a new 'rsh' scheme, to be used with
72### 'svn+rsh:' URLs, you could do so as follows:
73# rsh = rsh
74### Or, if you wanted to specify a full path and arguments:
75# rsh = /path/to/rsh -l myusername
76### On Windows, if you are specifying a full path to a command,
77### use a forward slash (/) or a paired backslash (\\) as the
78### path separator. A single backslash will be treated as an
79### escape for the following character.
80
81### Section for configuring miscelleneous Subversion options.
82[miscellany]
83### Set global-ignores to a set of whitespace-delimited globs
84### which Subversion will ignore in its 'status' output, and
85### while importing or adding files and directories.
86### '*' matches leading dots, e.g. '*.rej' matches '.foo.rej'.
87# global-ignores = *.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo
88# *.rej *~ #*# .#* .*.swp .DS_Store
89### Set log-encoding to the default encoding for log messages
90# log-encoding = latin1
91### Set use-commit-times to make checkout/update/switch/revert
92### put last-committed timestamps on every file touched.
93# use-commit-times = yes
94### Set no-unlock to prevent 'svn commit' from automatically
95### releasing locks on files.
96# no-unlock = yes
97### Set mime-types-file to a MIME type registry file, used to
98### provide hints to Subversion's MIME type auto-detection
99### algorithm.
100# mime-types-file = /path/to/mime.types
101### Set preserved-conflict-file-exts to a whitespace-delimited
102### list of patterns matching file extensions which should be
103### preserved in generated conflict file names. By default,
104### conflict files use custom extensions.
105# preserved-conflict-file-exts = doc ppt xls od?
106### Set enable-auto-props to 'yes' to enable automatic properties
107### for 'svn add' and 'svn import', it defaults to 'no'.
108### Automatic properties are defined in the section 'auto-props'.
109# enable-auto-props = yes
110### Set interactive-conflicts to 'no' to disable interactive
111### conflict resolution prompting. It defaults to 'yes'.
112# interactive-conflicts = no
113### Set memory-cache-size to define the size of the memory cache
114### used by the client when accessing a FSFS repository via
115### ra_local (the file:// scheme). The value represents the number
116### of MB used by the cache.
117# memory-cache-size = 16
118
119### Section for configuring automatic properties.
120[auto-props]
121### The format of the entries is:
122### file-name-pattern = propname[=value][;propname[=value]...]
123### The file-name-pattern can contain wildcards (such as '*' and
124### '?'). All entries which match (case-insensitively) will be
125### applied to the file. Note that auto-props functionality
126### must be enabled, which is typically done by setting the
127### 'enable-auto-props' option.
128# *.c = svn:eol-style=native
129# *.cpp = svn:eol-style=native
130# *.h = svn:keywords=Author Date Id Rev URL;svn:eol-style=native
131# *.dsp = svn:eol-style=CRLF
132# *.dsw = svn:eol-style=CRLF
133# *.sh = svn:eol-style=native;svn:executable
134# *.txt = svn:eol-style=native;svn:keywords=Author Date Id Rev URL;
135# *.png = svn:mime-type=image/png
136# *.jpg = svn:mime-type=image/jpeg
137# Makefile = svn:eol-style=native
138
Note: See TracBrowser for help on using the repository browser.