Release new version 0.19.7
[grml-etc-core.git] / etc / skel / .hgrc
1 # Filename:      $HOME/.hgrc
2 # Purpose:       configuration file for mercurial
3 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
4 # Bug-Reports:   see http://grml.org/bugs/
5 # License:       This file is licensed under the GPL v2.
6 ################################################################################
7
8 # See 'man 5 hgrc' and http://www.selenic.com/mercurial/hgrc.5.html
9 # for more details about possibilities for configuration of mercurial.
10
11 [ui]
12 username = grml User <repos@grml.org.invalid>
13 # debug = true
14 # verbose = true
15 # merge = hgmergevim
16
17 # useful for patchbomb extension (e.g.: 'hg email -t grml@localhost tip')
18 [email]
19 from = grml User <grml@localhost>
20 method = /usr/sbin/sendmail
21
22 # Extension stuff, see /etc/mercurial/hgrc.d/hgext.rc
23 # and http://www.selenic.com/mercurial/wiki/index.cgi/ExtensionHowto
24
25 [extensions]
26
27 # Hooks to control commit access to parts of a tree.
28 # acl=/usr/share/python-support/mercurial/hgext/acl.py
29
30 # Update Bugzilla bugs when changesets mention them (> 0.9-1).
31 # bugzilla = /home/grml/mercurial-snapshot/hgext/bugzilla.py
32
33 # Graph amount of code changed per author over time (> 0.9-1).
34 # churn = /home/grml/mercurial-snapshot/contrib/churn.py
35 # churn =
36
37 # Extension for using an external program to diff repository (or
38 # selected files). Available in 0.9.1.
39 # extdiff=/usr/share/python-support/mercurial/hgext/extdiff.py
40 hgext.extdiff=
41
42 # Convenience wrapper for pulling and merging.
43 # fetch =
44
45 # Extension that provides commands to help working with trees
46 # composed of many Mercurial repositories. See
47 # http://www.terminus.org/hg/hgforest
48 # forest =
49
50 # Extension for signing and checking signatures.
51 # gpg=/usr/share/python-support/mercurial/hgext/gpg.py
52 # gpg=
53
54 # Extension for binary searching in O(log2(n)) for the changeset
55 # introducing a (mis)feature, see
56 # http://www.selenic.com/mercurial/wiki/index.cgi/UsingBisect
57 # hbisect=/usr/share/python-support/mercurial/hgext/hbisect.py
58
59 # Graphical gitk-like repository browser, invoked with hg view.
60 # hgk=/usr/share/python-support/mercurial/hgext/hgk.py
61
62 # Mercurial Queue management extension - see
63 # http://www.selenic.com/mercurial/wiki/index.cgi/MqExtension
64 # mq=/usr/share/python-support/mercurial/hgext/mq.py
65
66 # Template-driven email notifications, see
67 # http://www.selenic.com/mercurial/wiki/index.cgi/NotifyExtension
68 # notify=/usr/share/python-support/mercurial/hgext/notify.py
69 # hgext.notify = 
70
71 # Extension providing the hg email command for sending a collection of
72 # Mercurial changesets as a series of patch emails.
73 # patchbomb=/usr/share/python-support/mercurial/hgext/patchbomb.py
74
75 # Cherry-picking, rebasing and changeset rewriting - see
76 # http://www.selenic.com/mercurial/wiki/index.cgi/TransplantExtension
77 # transplant =
78
79 # Extension for line ending conversion filters for the Windows platform.
80 # win32text=/usr/share/python-support/mercurial/hgext/win32text.py
81
82 [extdiff]
83 # DirDiff script for Vim: http://www.vim.org/scripts/script.php?script_id=102
84 # wget http://www.vim.org/scripts/download_script.php?src_id=5306 -O ~/.vim/plugin/DirDiff.vim
85 # Notice: opts.* works only in Mercurial >0.9.1, use hgvimdiff as wrapper therefore
86 cmd.vimdiff=/usr/bin/hgvimdiff
87 # cmd.vimdiff=/usr/bin/vim.basic
88 # opts.vimdiff=-f '+next' '+execute "DirDiff" argv(0) argv(1)'
89
90 # vim: ft=config