Advertisement
Guest User

Untitled

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