.hgrc
author Oleksandr Gavenko <gavenkoa@gmail.com>
Thu, 20 Oct 2011 16:52:53 +0300
changeset 233 313f5e4493d8
parent 232 ceade72317bd
child 259 dea2aa21eb9d
permissions -rw-r--r--
Preserve progress line after compilting of operation.

; -*- mode: ini-generic; coding: utf-8 -*-

[ui]
; Who are you?
username = Oleksandr Gavenko <gavenkoa@gmail.com>
; Use internal merge engine. When merge fail you see <<<<<< ====== >>>>>> and a .orig file.
merge = internal:merge
editor = emacs -q
ignore = ~/.hgignore

style = ~/.hgstyle

[defaults]
log = -v -f
incoming = -v
outgoing = -v
diff = --git

[merge-tools]
emacs.args = -q --eval "(ediff-merge-with-ancestor \"$local\" \"$other\" \"$base\" nil \"$output\")"

[web]
encoding = utf-8

[extensions]
; To allow 'fetch' command.
hgext.fetch =
; To allow Mercurial Queues.
hgext.mq =
; To import revisions from foreign VCS repositories into Mercurial.
hgext.convert =
; Usage:  hg glog <dir>
hgext.graphlog =
; Enable '.hgeol' tracking (fix for CR/LF).
hgext.eol =
; Allow cherry-picking.
transplant =
; Show progress on operations.
progress =

[progress]
; Number of seconds (float) before showing the progress bar.
delay = 2
; Time in seconds between refreshes of the progress bar.
refresh = 0.5
; Format of the progress bar: topic bar number estimate.
format = topic bar number estimate
; Clear the progress bar after it's done.
clear-complete = False
; If true, don't show a progress bar.
disable = False
; If true, ALWAYS show a progress bar, unless disable is given.
assume-tty = False