##// END OF EJS Templates
contrib: promote strip extension over MQ in sample.hgrc
Martin Geisler -
r20143:216d3d85 stable
parent child Browse files
Show More
@@ -1,133 +1,133
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
46 ### graphlog - ASCII graph log
47 ### hg help glog
47 ### hg help glog
48
48
49 # hgext.graphlog =
49 # hgext.graphlog =
50
50
51 ### hgk - GUI repository browser
51 ### hgk - GUI repository browser
52 ### hg help view
52 ### hg help view
53
53
54 # hgext.hgk =
54 # hgext.hgk =
55
55
56 ### mq - Mercurial patch queues
56 ### strip - Remove changesets and their descendents from history
57 ### hg help mq
57 ### hg help strip
58
58
59 # hgext.mq =
59 # hgext.strip =
60
60
61 ### notify - Template driven e-mail notifications
61 ### notify - Template driven e-mail notifications
62 ### hg help notify
62 ### hg help notify
63
63
64 # hgext.notify =
64 # hgext.notify =
65
65
66 ### patchbomb - send changesets as a series of patch emails
66 ### patchbomb - send changesets as a series of patch emails
67 ### hg help email
67 ### hg help email
68
68
69 # hgext.patchbomb =
69 # hgext.patchbomb =
70
70
71 ### churn - create a graph showing who changed the most lines
71 ### churn - create a graph showing who changed the most lines
72 ### hg help churn
72 ### hg help churn
73
73
74 # hgext.churn = /home/user/hg/hg/contrib/churn.py
74 # hgext.churn = /home/user/hg/hg/contrib/churn.py
75
75
76 ### eol - automatic management of line endings
76 ### eol - automatic management of line endings
77
77
78 # hgext.eol =
78 # hgext.eol =
79
79
80 ### --- hgk additional configuration
80 ### --- hgk additional configuration
81
81
82 [hgk]
82 [hgk]
83
83
84 ### set executable path
84 ### set executable path
85
85
86 # path = /home/user/hg/hg/contrib/hgk
86 # path = /home/user/hg/hg/contrib/hgk
87
87
88 ### --- Hook to Mercurial actions - See hgrc man page for avaliable hooks
88 ### --- Hook to Mercurial actions - See hgrc man page for avaliable hooks
89
89
90 [hooks]
90 [hooks]
91
91
92 ### Example notify hooks (load hgext.notify extension before use)
92 ### Example notify hooks (load hgext.notify extension before use)
93
93
94 # incoming.notify = python:hgext.notify.hook
94 # incoming.notify = python:hgext.notify.hook
95 # changegroup.notify = python:hgext.notify.hook
95 # changegroup.notify = python:hgext.notify.hook
96
96
97 ### Email configuration for the notify and patchbomb extensions
97 ### Email configuration for the notify and patchbomb extensions
98
98
99 [email]
99 [email]
100
100
101 ### Your email address
101 ### Your email address
102
102
103 # from = user@example.com
103 # from = user@example.com
104
104
105 ### Method to send email - smtp or /usr/sbin/sendmail or other program name
105 ### Method to send email - smtp or /usr/sbin/sendmail or other program name
106
106
107 # method = smtp
107 # method = smtp
108
108
109 ### smtp server to send email to
109 ### smtp server to send email to
110
110
111 [smtp]
111 [smtp]
112
112
113 # host = mail
113 # host = mail
114 # port = 25
114 # port = 25
115 # tls = false
115 # tls = false
116 # username = user
116 # username = user
117 # password = blivet
117 # password = blivet
118 # local_hostname = myhost
118 # local_hostname = myhost
119
119
120 ### --- Email notification hook for server
120 ### --- Email notification hook for server
121
121
122 [notify]
122 [notify]
123 ### multiple sources can be specified as a whitespace or comma separated list
123 ### multiple sources can be specified as a whitespace or comma separated list
124
124
125 # sources = serve push pull bundle
125 # sources = serve push pull bundle
126
126
127 ### set this to False when you're ready for mail to start sending
127 ### set this to False when you're ready for mail to start sending
128
128
129 # test = True
129 # test = True
130
130
131 ### path to config file with names of subscribers
131 ### path to config file with names of subscribers
132
132
133 # config = /path/to/subscription/file
133 # config = /path/to/subscription/file
General Comments 0
You need to be logged in to leave comments. Login now