comparison nobuild/dot-hgrc @ 94:deb9d9fae854

Added my .hgrc file and tweaked README
author David Bryant <bagnose@gmail.com>
date Thu, 26 Aug 2010 16:08:21 +0930
parents
children 523269b36711 ab745d8b10e5
comparison
equal deleted inserted replaced
93:069ceb9446ad 94:deb9d9fae854
1 # --- Sample .hgrc file. Customize and drop as ~/.hgrc --- #
2
3 # --- Mercurial's internal format --- #
4 [revlog]
5 # format = 0 for revlog; format = 1 for revlogng
6 format = 1
7 # format flags
8 # inline is the only valid flag right now.
9 # revlogng needs flags = inline
10 flags = inline
11
12 # --- User interface --- #
13 [ui]
14 # show changed files and be a bit more verbose if True
15 verbose = True
16 # username data to appear in comits
17 # it usually takes the form: "Joe User <joe.user at host.com>"
18 username = David Bryant <bagnose@gmail.com>
19
20 # --- Active Extensions --- #
21 # each extension has its own 'extension_name = path' line
22 # the default python library path is used when path is left blank
23 # the hgext dir is used when 'hgext.extension_name = ' is written
24 [extensions]
25 hgk =
26 # acl - Access control lists
27 # hg help acl
28 # hgext.acl =
29 # ---
30 # bisect - binary search changesets to detect (mis)features
31 # hg help bisect
32 # hgext.hbisect =
33 # ---
34 # bugzilla - update bugzilla bugs when changesets mention them
35 # hg help bugzilla
36 # hgext.bugzilla =
37 # ---
38 # extdiff - Use external diff application instead of builtin one
39 # hgext.extdiff =
40 # ---
41 # gpg - GPG checks and signing
42 # hg help gpg
43 # hgext.gpg =
44 # ---
45 # hgk - GUI repository browser
46 # hg help view
47 # hgk = /home/pachi/program/hg/hg/contrib/hgk.py
48 # ---
49 # mq - Mercurial patch queues
50 # hg help mq
51 # hgext.mq =
52 # ---
53 # notify - Template driven e-mail notifications
54 # hg help notify
55 # hgext.notify =
56 # ---
57 # patchbomb - send changesets as a series of patch emails
58 # hg help email
59 # hgext.patchbomb =
60 # ---
61 # win32text - line ending conversion filters for the Windows platform
62 # hgext.win32text =
63
64 # --- hgk additional configuration --- #
65 # set executable path
66 #[hgk]
67 #path = /home/pachi/program/hg/hg/contrib/hgk
68
69 # Hook to Mercurial actions - See hgrc man page for avaliable hooks
70 [hooks]
71 #Example notify hooks
72 #incoming.notify = python:hgext.notify.hook
73 #changegroup.notify = python:hgext.notify.hook
74
75 # --- notify extension configuration --- #
76 # Email information for the notify extension
77 [email]
78 #from = your at email.address
79
80 # smtp sever to send notifications to
81 [smtp]
82 #host = localhost
83
84 # base url, or dummy value if repo isn't available via http
85 [web]
86 #baseurl = http://hgserver/...
87
88 [notify]
89 # multiple sources can be specified as a whitespace separated list
90 #sources = serve push pull bundle
91 # set this to False when you're ready for mail to start sending
92 #test = True
93 #config = /path/to/subscription/file
94
95 # --- end of file --- #