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