mercurial.ini
125 lines
| 3.0 KiB
| text/x-ini
|
IniLexer
Steve Borho
|
r9322 | ; System-wide Mercurial config file. | ||
; | ||||
; !!! Do Not Edit This File !!! | ||||
; | ||||
; This file will be replaced by the installer on every upgrade. | ||||
; Editing this file can cause strange side effects on Vista. | ||||
; | ||||
; http://bitbucket.org/tortoisehg/stable/issue/135 | ||||
; | ||||
; To change settings you see in this file, override (or enable) them in | ||||
; your user Mercurial.ini file, where USERNAME is your Windows user name: | ||||
; | ||||
; XP or older - C:\Documents and Settings\USERNAME\Mercurial.ini | ||||
; Vista or later - C:\Users\USERNAME\Mercurial.ini | ||||
Lee Cantey
|
r4749 | |||
Thomas Arendsen Hein
|
r5142 | [ui] | ||
Steve Borho
|
r9322 | ; editor used to enter commit logs, etc. Most text editors will work. | ||
Lee Cantey
|
r4749 | editor = notepad | ||
Pascal Quantin
|
r7662 | ; show changed files and be a bit more verbose if True | ||
; verbose = True | ||||
Steve Borho
|
r9322 | |||
Pascal Quantin
|
r7662 | ; username data to appear in commits | ||
; it usually takes the form: Joe User <joe.user@host.com> | ||||
; username = Joe User <j.user@example.com> | ||||
Steve Borho
|
r9322 | ; In order to push/pull over ssh you must specify an ssh tool | ||
;ssh = "C:\Progra~1\TortoiseSVN\bin\TortoisePlink.exe" -ssh -2 | ||||
;ssh = C:\cygwin\bin\ssh | ||||
Lee Cantey
|
r4749 | |||
Steve Borho
|
r9322 | ; | ||
; For more information about mercurial extensions, start here | ||||
; http://www.selenic.com/mercurial/wiki/index.cgi/UsingExtensions | ||||
; | ||||
; Extensions shipped with Mercurial | ||||
; | ||||
Lee Cantey
|
r4749 | [extensions] | ||
Steve Borho
|
r9322 | ;acl = | ||
;alias = | ||||
;bookmarks = | ||||
;bugzilla = | ||||
;children = | ||||
;churn = | ||||
;color = | ||||
;convert = | ||||
;extdiff = | ||||
;fetch = | ||||
;gpg = | ||||
;graphlog = | ||||
;hgcia = | ||||
;hgk = | ||||
;highlight = | ||||
;interhg = | ||||
;keyword = | ||||
;mq = | ||||
;notify = | ||||
;pager = | ||||
;parentrevspec = | ||||
;patchbomb = | ||||
Pascal Quantin
|
r10474 | ;progress = | ||
Steve Borho
|
r9322 | ;purge = | ||
;rebase = | ||||
;record = | ||||
;transplant = | ||||
;win32mbcs = | ||||
;win32text = | ||||
;zeroconf = | ||||
Lee Cantey
|
r4749 | |||
Steve Borho
|
r9322 | ; To use cleverencode/cleverdecode, you must enable win32text extension | ||
Lee Cantey
|
r4749 | |||
[encode] | ||||
; Encode files that don't contain NUL characters. | ||||
; ** = cleverencode: | ||||
; Alternatively, you can explicitly specify each file extension that | ||||
; you want encoded (any you omit will be left untouched), like this: | ||||
; *.txt = dumbencode: | ||||
[decode] | ||||
; Decode files that don't contain NUL characters. | ||||
; ** = cleverdecode: | ||||
; Alternatively, you can explicitly specify each file extension that | ||||
; you want decoded (any you omit will be left untouched), like this: | ||||
Steve Borho
|
r9322 | |||
Pascal Quantin
|
r7662 | ; **.txt = dumbdecode: | ||
Steve Borho
|
r9322 | |||
[patch] | ||||
; If you enable win32text filtering, you will want to enable this | ||||
; line as well to allow patching to work correctly. | ||||
; eol = crlf | ||||
; | ||||
; Define external diff commands | ||||
; | ||||
[extdiff] | ||||
;cmd.bc3diff = C:\Program Files\Beyond Compare 3\BCompare.exe | ||||
;cmd.vdiff = C:\Progra~1\TortoiseSVN\bin\TortoiseMerge.exe | ||||
;cmd.vimdiff = gvim.exe | ||||
;opts.vimdiff = -f '+next' '+execute "DirDiff ".argv(0)." ".argv(1)' | ||||
Pascal Quantin
|
r7663 | [hgk] | ||
; Replace the following with your path to hgk, uncomment it and | ||||
Steve Borho
|
r9322 | ; install ActiveTcl (or another win32 port like tclkit) | ||
Pascal Quantin
|
r7663 | ; path="C:\Program Files\Mercurial\Contrib\hgk.tcl" | ||
Steve Borho
|
r9322 | ; vdiff=vdiff | ||
Lee Cantey
|
r4749 | |||
Steve Borho
|
r9322 | ; | ||
; The git extended diff format can represent binary files, file | ||||
; permission changes, and rename information that the normal patch format | ||||
; cannot describe. However it is also not compatible with tools which | ||||
; expect normal patches. so enable git patches at your own risk. | ||||
; | ||||
[diff] | ||||
;git = false | ||||
;nodates = false | ||||
Pascal Quantin
|
r7662 | |||