/subversion/config

http://github.com/brinkman83/bashrc · #! · 148 lines · 142 code · 6 blank · 0 comment · 0 complexity · 54c859b1f7988d775fda676a79817c77 MD5 · raw file

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