/win32/mercurial.rc

https://bitbucket.org/tortoisehg/hgtk/ · Windows Resource-Definition Script · 119 lines · 109 code · 10 blank · 0 comment · 0 complexity · 3d06ddb03f94366d4175f19f88e80ad8 MD5 · raw file

  1. ; System-wide Mercurial config file.
  2. ;
  3. ; See http://www.selenic.com/mercurial/hgrc.5.html or the file
  4. ; 'hgrc.5.html' in the 'docs' subdirectory for help about the syntax
  5. ; and semantics of mercurial.ini files.
  6. ;
  7. ; !!! Do Not Edit This File !!!
  8. ;
  9. ; This file will be replaced by the installer on every upgrade.
  10. ; Editing this file can cause strange side effects on Vista.
  11. ;
  12. ; http://bitbucket.org/tortoisehg/stable/issue/135
  13. ;
  14. ; To change settings you see in this file, override (or enable) them in
  15. ; your user Mercurial.ini file, where USERNAME is your Windows user name:
  16. ;
  17. ; XP or older - C:\Documents and Settings\USERNAME\Mercurial.ini
  18. ; Vista or later - C:\Users\USERNAME\Mercurial.ini
  19. [ui]
  20. ; editor used to enter commit logs, etc. Most any text editor
  21. ; will suffice.
  22. editor = notepad
  23. ; In order to push/pull over ssh you must specify a ssh tool
  24. ssh = "TortoisePlink.exe" -ssh -2
  25. ;ssh = C:\cygwin\bin\ssh
  26. ;
  27. ; For more information about mercurial extensions, start here
  28. ; http://www.selenic.com/mercurial/wiki/index.cgi/UsingExtensions
  29. ;
  30. [extensions]
  31. ; extensions shipped with Mercurial by default
  32. ;
  33. ;acl =
  34. ;bookmarks =
  35. ;bugzilla =
  36. ;children =
  37. ;churn =
  38. ; Warning: the color extension is not recommended for Windows
  39. ;color =
  40. ;convert =
  41. ;extdiff =
  42. ;eol =
  43. ;fetch =
  44. ;gpg =
  45. ;graphlog =
  46. ;hgcia =
  47. ;hgk =
  48. ;highlight =
  49. ;interhg =
  50. ;keyword =
  51. ;mq =
  52. ;notify =
  53. ;pager =
  54. ;parentrevspec =
  55. ;patchbomb =
  56. ;progress =
  57. ;purge =
  58. ;rebase =
  59. ;record =
  60. ;schemes =
  61. ;transplant =
  62. ;win32mbcs =
  63. ;win32text =
  64. ;zeroconf =
  65. ; Extra extensions bundled with TortoiseHg
  66. ;fold =
  67. ;perfarce =
  68. ;mercurial_keyring =
  69. ; fixfrozenexts is enabled by default. It allows extension help
  70. ; to work "out of the box" from binary installers.
  71. fixfrozenexts =
  72. ;
  73. ; Define external diff commands, for hg command line use only
  74. ;
  75. [extdiff]
  76. ;kdiff3 =
  77. ; The git extended diff format will properly store binary files,
  78. ; file permission changes, and rename information that the normal
  79. ; patch format cannot cover. However it is also not 100% compatible
  80. ; with tools which expect normal patches. so enable these at your
  81. ; own risk.
  82. ;
  83. [diff]
  84. ;git = false
  85. ;nodates = false
  86. ;
  87. ; Keyword extension example configuration. To use, one must
  88. ; enable the keyword extension, then uncomment and modify these
  89. ; two sections. Before using the keyword extension, be sure to
  90. ; thoroughly read it's documentation and understand how it works,
  91. ; and why it is not a core feature of Mercurial.
  92. ;
  93. ; http://www.selenic.com/mercurial/wiki/index.cgi/KeywordExtension
  94. ; http://www.selenic.com/mercurial/wiki/index.cgi/KeywordPlan
  95. ;
  96. ; If you encounter strange problems using Mercurial, a good first
  97. ; debugging step would be to disable this extension.
  98. ;
  99. [keyword]
  100. ; expand keywords in all python files in working dir
  101. ;**.py =
  102. [keywordmaps]
  103. ; See documentation for examples
  104. ; The schemes extension must be enabled to use one of these shortcuts.
  105. ; See http://mercurial.selenic.com/wiki/SchemesExtension
  106. [schemes]
  107. ;bb = http://bitbucket.org/
  108. ;bb+ssh = ssh://hg@bitbucket.org/
  109. ;py = http://code.python.org/hg/