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