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