misc/subversion/config

Code
Comments
Other
Rev Date Author Line
9 24 Feb 06 gregory 1 ### This file configures various client-side behaviors.
9 24 Feb 06 gregory 2 ###
9 24 Feb 06 gregory 3 ### The commented-out examples below are intended to demonstrate
9 24 Feb 06 gregory 4 ### how to use this file.
9 24 Feb 06 gregory 5
9 24 Feb 06 gregory 6 ### Section for authentication and authorization customizations.
9 24 Feb 06 gregory 7 ### Set store-auth-creds to 'no' to avoid storing your subversion
9 24 Feb 06 gregory 8 ### credentials in the auth/ area of your config directory.
9 24 Feb 06 gregory 9 ### It defaults to 'yes'.  Note that this option only prevents
9 24 Feb 06 gregory 10 ### saving of *new* credentials;  it doesn't invalidate existing
9 24 Feb 06 gregory 11 ### caches.  (To do that, remove the cache files by hand.)
9 24 Feb 06 gregory 12 # [auth]
9 24 Feb 06 gregory 13 # store-auth-creds = no
9 24 Feb 06 gregory 14
9 24 Feb 06 gregory 15 ### Section for configuring external helper applications.
9 24 Feb 06 gregory 16 ### Set editor to the command used to invoke your text editor.
9 24 Feb 06 gregory 17 ###   This will override the environment variables that Subversion
9 24 Feb 06 gregory 18 ###   examines by default to find this information ($EDITOR, 
9 24 Feb 06 gregory 19 ###   et al).
9 24 Feb 06 gregory 20 ### Set diff-cmd to the absolute path of your 'diff' program.
9 24 Feb 06 gregory 21 ###   This will override the compile-time default, which is to use
9 24 Feb 06 gregory 22 ###   Subversion's internal diff implementation.
9 24 Feb 06 gregory 23 ### Set diff3-cmd to the absolute path of your 'diff3' program.
9 24 Feb 06 gregory 24 ###   This will override the compile-time default, which is to use
9 24 Feb 06 gregory 25 ###   Subversion's internal diff3 implementation.
9 24 Feb 06 gregory 26 ### Set diff3-has-program-arg to 'true' or 'yes' if your 'diff3'
9 24 Feb 06 gregory 27 ###   program accepts the '--diff-program' option.
9 24 Feb 06 gregory 28 [helpers]
9 24 Feb 06 gregory 29 editor-cmd = vim -c 'set tw=72 et'
9 24 Feb 06 gregory 30 # diff-cmd = diff_program (diff, gdiff, etc.)
9 24 Feb 06 gregory 31 # diff3-cmd = diff3_program (diff3, gdiff3, etc.)
9 24 Feb 06 gregory 32 # diff3-has-program-arg = [true | false]
9 24 Feb 06 gregory 33
9 24 Feb 06 gregory 34 ### Section for configuring tunnel agents.
9 24 Feb 06 gregory 35 # [tunnels]
9 24 Feb 06 gregory 36 ### Configure svn protocol tunnel schemes here.  By default, only
9 24 Feb 06 gregory 37 ### the 'ssh' scheme is defined.  You can define other schemes to
9 24 Feb 06 gregory 38 ### be used with 'svn+scheme://hostname/path' URLs.  A scheme
9 24 Feb 06 gregory 39 ### definition is simply a command, optionally prefixed by an
9 24 Feb 06 gregory 40 ### environment variable name which can override the command if it
9 24 Feb 06 gregory 41 ### is defined.  The command (or environment variable) may contain
9 24 Feb 06 gregory 42 ### arguments, using standard shell quoting for arguments with
9 24 Feb 06 gregory 43 ### spaces.  The command will be invoked as:
9 24 Feb 06 gregory 44 ###   <command> <hostname> svnserve -t
9 24 Feb 06 gregory 45 ### (If the URL includes a username, then the hostname will be
9 24 Feb 06 gregory 46 ### passed to the tunnel agent as <user>@<hostname>.)  If the
9 24 Feb 06 gregory 47 ### built-in ssh scheme were not predefined, it could be defined
9 24 Feb 06 gregory 48 ### as:
9 24 Feb 06 gregory 49 # ssh = $SVN_SSH ssh
9 24 Feb 06 gregory 50 ### If you wanted to define a new 'rsh' scheme, to be used with
9 24 Feb 06 gregory 51 ### 'svn+rsh:' URLs, you could do so as follows:
9 24 Feb 06 gregory 52 # rsh = rsh
9 24 Feb 06 gregory 53 ### Or, if you wanted to specify a full path and arguments:
9 24 Feb 06 gregory 54 # rsh = /path/to/rsh -l myusername
9 24 Feb 06 gregory 55 ### On Windows, if you are specifying a full path to a command,
9 24 Feb 06 gregory 56 ### use a forward slash (/) or a paired backslash (\\) as the
9 24 Feb 06 gregory 57 ### path separator.  A single backslash will be treated as an
9 24 Feb 06 gregory 58 ### escape for the following character.
9 24 Feb 06 gregory 59
9 24 Feb 06 gregory 60 ### Section for configuring miscelleneous Subversion options.
9 24 Feb 06 gregory 61 [miscellany]
9 24 Feb 06 gregory 62 # recommended options
9 24 Feb 06 gregory 63 global-ignores = *.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store
9 24 Feb 06 gregory 64 use-commit-times = yes
9 24 Feb 06 gregory 65 # mandatory option
9 24 Feb 06 gregory 66 enable-auto-props = yes
9 24 Feb 06 gregory 67 # all auto-props setting below are mandatory
9 24 Feb 06 gregory 68 [auto-props]
9 24 Feb 06 gregory 69 *.c = svn:eol-style=native;svn:keywords=Id
9 24 Feb 06 gregory 70 *.cc = svn:eol-style=native;svn:keywords=Id
9 24 Feb 06 gregory 71 *.cpp = svn:eol-style=native;svn:keywords=Id
9 24 Feb 06 gregory 72 *.h = svn:eol-style=native;svn:keywords=Id
9 24 Feb 06 gregory 73 *.html = svn:eol-style=native;svn:keywords=Date Id
9 24 Feb 06 gregory 74 *.java = svn:eol-style=native;svn:keywords=Date Id
9 24 Feb 06 gregory 75 *.jar = svn:mime-type=application/x-java-archive
9 24 Feb 06 gregory 76 *.jsp = svn:eol-style=native;svn:keywords=Date Id
9 24 Feb 06 gregory 77 *.jpg = svn:mime-type=image/jpeg
9 24 Feb 06 gregory 78 *.pl = svn:eol-style=native;svn:keywords=Id
9 24 Feb 06 gregory 79 *.pm = svn:eol-style=native;svn:keywords=Id
9 24 Feb 06 gregory 80 *.png = svn:mime-type=image/png
9 24 Feb 06 gregory 81 *.sh = svn:eol-style=native;svn:executable;svn:keywords=Id
9 24 Feb 06 gregory 82 *.tex = svn:eol-style=native;svn:keywords=Id
9 24 Feb 06 gregory 83 *.txt = svn:eol-style=native;svn:keywords=Date Id
9 24 Feb 06 gregory 84 *.xml = svn:eol-style=native;svn:keywords=Date Id
9 24 Feb 06 gregory 85 *.xsd = svn:eol-style=native;svn:keywords=Id
9 24 Feb 06 gregory 86 configure.ac = svn:eol-style=native;svn:keywords=Id
9 24 Feb 06 gregory 87 Makefile = svn:eol-style=native;svn:keywords=Id
9 24 Feb 06 gregory 88 Makefile.am = svn:eol-style=native;svn:keywords=Id
9 24 Feb 06 gregory 89
9 24 Feb 06 gregory 90