]> git.lizzy.rs Git - plan9front.git/blob - sys/src/cmd/hg/contrib/sample.hgrc
add hg and python
[plan9front.git] / sys / src / cmd / hg / contrib / sample.hgrc
1 ### --- User interface
2
3 [ui]
4
5 ### show changed files and be a bit more verbose if True
6
7 # verbose = True
8
9 ### username data to appear in comits
10 ### it usually takes the form: Joe User <joe.user@host.com>
11
12 # username = Joe User <j.user@example.com>
13
14 ### --- Extensions
15
16 [extensions]
17
18 ### each extension has its own 'extension_name=path' line
19 ### the default python library path is used when path is left blank
20 ### the hgext dir is used when 'hgext.extension_name=' is written
21
22 ### acl - Access control lists
23 ### hg help acl
24
25 # hgext.acl =
26
27 ### bisect - binary search changesets to detect bugs
28 ### hg help bisect
29
30 # hgext.hbisect =
31
32 ### bugzilla - update bugzilla bugs when changesets mention them
33 ### hg help bugzilla
34
35 # hgext.bugzilla =
36
37 ### extdiff - Use external diff application instead of builtin one
38
39 # hgext.extdiff =
40
41 ### gpg - GPG checks and signing
42 ### hg help gpg
43
44 # hgext.gpg =
45
46 ### graphlog - ASCII graph log
47 ### hg help glog
48
49 # hgext.graphlog =
50
51 ### hgk - GUI repository browser
52 ### hg help view
53
54 # hgext.hgk =
55
56 ### mq - Mercurial patch queues
57 ### hg help mq
58
59 # hgext.mq =
60
61 ### notify - Template driven e-mail notifications
62 ### hg help notify
63
64 # hgext.notify =
65
66 ### patchbomb - send changesets as a series of patch emails
67 ### hg help email
68
69 # hgext.patchbomb =
70
71 ### churn - create a graph showing who changed the most lines
72 ### hg help churn
73
74 # hgext.churn = /home/user/hg/hg/contrib/churn.py
75
76 ### win32text - line ending conversion filters for the Windows platform
77
78 # hgext.win32text =
79
80 ### --- hgk additional configuration
81
82 [hgk]
83
84 ### set executable path
85
86 # path = /home/user/hg/hg/contrib/hgk
87
88 ### --- Hook to Mercurial actions - See hgrc man page for avaliable hooks
89
90 [hooks]
91
92 ### Example notify hooks (load hgext.notify extension before use)
93
94 # incoming.notify = python:hgext.notify.hook
95 # changegroup.notify = python:hgext.notify.hook
96
97 ### Email configuration for the notify and patchbomb extensions
98
99 [email]
100
101 ### Your email address
102
103 # from = user@example.com
104
105 ### Method to send email - smtp or /usr/sbin/sendmail or other program name
106
107 # method = smtp
108
109 ### smtp server to send email to
110
111 [smtp]
112
113 # host = mail
114 # port = 25
115 # tls = false
116 # username = user
117 # password = blivet
118 # local_hostname = myhost
119
120 ### --- Email notification hook for server
121
122 [notify]
123 ### multiple sources can be specified as a whitespace or comma separated list
124
125 # sources = serve push pull bundle
126
127 ### set this to False when you're ready for mail to start sending
128
129 # test = True
130
131 ### path to config file with names of subscribers
132
133 # config = /path/to/subscription/file