##// END OF EJS Templates
bisect with command: ability to skip revision or abort bisection
Alexander Solovyov -
r7228:9b72c732 default
parent child Browse files
Show More
@@ -1,3364 +1,3374 b''
1 # commands.py - command processing for mercurial
1 # commands.py - command processing for mercurial
2 #
2 #
3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
4 #
4 #
5 # This software may be used and distributed according to the terms
5 # This software may be used and distributed according to the terms
6 # of the GNU General Public License, incorporated herein by reference.
6 # of the GNU General Public License, incorporated herein by reference.
7
7
8 from node import hex, nullid, nullrev, short
8 from node import hex, nullid, nullrev, short
9 from repo import RepoError, NoCapability
9 from repo import RepoError, NoCapability
10 from i18n import _, gettext
10 from i18n import _, gettext
11 import os, re, sys, urllib
11 import os, re, sys, urllib
12 import hg, util, revlog, bundlerepo, extensions, copies
12 import hg, util, revlog, bundlerepo, extensions, copies
13 import difflib, patch, time, help, mdiff, tempfile
13 import difflib, patch, time, help, mdiff, tempfile
14 import version, socket
14 import version, socket
15 import archival, changegroup, cmdutil, hgweb.server, sshserver, hbisect
15 import archival, changegroup, cmdutil, hgweb.server, sshserver, hbisect
16 import merge as merge_
16 import merge as merge_
17
17
18 # Commands start here, listed alphabetically
18 # Commands start here, listed alphabetically
19
19
20 def add(ui, repo, *pats, **opts):
20 def add(ui, repo, *pats, **opts):
21 """add the specified files on the next commit
21 """add the specified files on the next commit
22
22
23 Schedule files to be version controlled and added to the repository.
23 Schedule files to be version controlled and added to the repository.
24
24
25 The files will be added to the repository at the next commit. To
25 The files will be added to the repository at the next commit. To
26 undo an add before that, see hg revert.
26 undo an add before that, see hg revert.
27
27
28 If no names are given, add all files in the repository.
28 If no names are given, add all files in the repository.
29 """
29 """
30
30
31 rejected = None
31 rejected = None
32 exacts = {}
32 exacts = {}
33 names = []
33 names = []
34 m = cmdutil.match(repo, pats, opts)
34 m = cmdutil.match(repo, pats, opts)
35 m.bad = lambda x,y: True
35 m.bad = lambda x,y: True
36 for abs in repo.walk(m):
36 for abs in repo.walk(m):
37 if m.exact(abs):
37 if m.exact(abs):
38 if ui.verbose:
38 if ui.verbose:
39 ui.status(_('adding %s\n') % m.rel(abs))
39 ui.status(_('adding %s\n') % m.rel(abs))
40 names.append(abs)
40 names.append(abs)
41 exacts[abs] = 1
41 exacts[abs] = 1
42 elif abs not in repo.dirstate:
42 elif abs not in repo.dirstate:
43 ui.status(_('adding %s\n') % m.rel(abs))
43 ui.status(_('adding %s\n') % m.rel(abs))
44 names.append(abs)
44 names.append(abs)
45 if not opts.get('dry_run'):
45 if not opts.get('dry_run'):
46 rejected = repo.add(names)
46 rejected = repo.add(names)
47 rejected = [p for p in rejected if p in exacts]
47 rejected = [p for p in rejected if p in exacts]
48 return rejected and 1 or 0
48 return rejected and 1 or 0
49
49
50 def addremove(ui, repo, *pats, **opts):
50 def addremove(ui, repo, *pats, **opts):
51 """add all new files, delete all missing files
51 """add all new files, delete all missing files
52
52
53 Add all new files and remove all missing files from the repository.
53 Add all new files and remove all missing files from the repository.
54
54
55 New files are ignored if they match any of the patterns in .hgignore. As
55 New files are ignored if they match any of the patterns in .hgignore. As
56 with add, these changes take effect at the next commit.
56 with add, these changes take effect at the next commit.
57
57
58 Use the -s option to detect renamed files. With a parameter > 0,
58 Use the -s option to detect renamed files. With a parameter > 0,
59 this compares every removed file with every added file and records
59 this compares every removed file with every added file and records
60 those similar enough as renames. This option takes a percentage
60 those similar enough as renames. This option takes a percentage
61 between 0 (disabled) and 100 (files must be identical) as its
61 between 0 (disabled) and 100 (files must be identical) as its
62 parameter. Detecting renamed files this way can be expensive.
62 parameter. Detecting renamed files this way can be expensive.
63 """
63 """
64 try:
64 try:
65 sim = float(opts.get('similarity') or 0)
65 sim = float(opts.get('similarity') or 0)
66 except ValueError:
66 except ValueError:
67 raise util.Abort(_('similarity must be a number'))
67 raise util.Abort(_('similarity must be a number'))
68 if sim < 0 or sim > 100:
68 if sim < 0 or sim > 100:
69 raise util.Abort(_('similarity must be between 0 and 100'))
69 raise util.Abort(_('similarity must be between 0 and 100'))
70 return cmdutil.addremove(repo, pats, opts, similarity=sim/100.)
70 return cmdutil.addremove(repo, pats, opts, similarity=sim/100.)
71
71
72 def annotate(ui, repo, *pats, **opts):
72 def annotate(ui, repo, *pats, **opts):
73 """show changeset information per file line
73 """show changeset information per file line
74
74
75 List changes in files, showing the revision id responsible for each line
75 List changes in files, showing the revision id responsible for each line
76
76
77 This command is useful to discover who did a change or when a change took
77 This command is useful to discover who did a change or when a change took
78 place.
78 place.
79
79
80 Without the -a option, annotate will avoid processing files it
80 Without the -a option, annotate will avoid processing files it
81 detects as binary. With -a, annotate will generate an annotation
81 detects as binary. With -a, annotate will generate an annotation
82 anyway, probably with undesirable results.
82 anyway, probably with undesirable results.
83 """
83 """
84 datefunc = ui.quiet and util.shortdate or util.datestr
84 datefunc = ui.quiet and util.shortdate or util.datestr
85 getdate = util.cachefunc(lambda x: datefunc(x[0].date()))
85 getdate = util.cachefunc(lambda x: datefunc(x[0].date()))
86
86
87 if not pats:
87 if not pats:
88 raise util.Abort(_('at least one file name or pattern required'))
88 raise util.Abort(_('at least one file name or pattern required'))
89
89
90 opmap = [('user', lambda x: ui.shortuser(x[0].user())),
90 opmap = [('user', lambda x: ui.shortuser(x[0].user())),
91 ('number', lambda x: str(x[0].rev())),
91 ('number', lambda x: str(x[0].rev())),
92 ('changeset', lambda x: short(x[0].node())),
92 ('changeset', lambda x: short(x[0].node())),
93 ('date', getdate),
93 ('date', getdate),
94 ('follow', lambda x: x[0].path()),
94 ('follow', lambda x: x[0].path()),
95 ]
95 ]
96
96
97 if (not opts.get('user') and not opts.get('changeset') and not opts.get('date')
97 if (not opts.get('user') and not opts.get('changeset') and not opts.get('date')
98 and not opts.get('follow')):
98 and not opts.get('follow')):
99 opts['number'] = 1
99 opts['number'] = 1
100
100
101 linenumber = opts.get('line_number') is not None
101 linenumber = opts.get('line_number') is not None
102 if (linenumber and (not opts.get('changeset')) and (not opts.get('number'))):
102 if (linenumber and (not opts.get('changeset')) and (not opts.get('number'))):
103 raise util.Abort(_('at least one of -n/-c is required for -l'))
103 raise util.Abort(_('at least one of -n/-c is required for -l'))
104
104
105 funcmap = [func for op, func in opmap if opts.get(op)]
105 funcmap = [func for op, func in opmap if opts.get(op)]
106 if linenumber:
106 if linenumber:
107 lastfunc = funcmap[-1]
107 lastfunc = funcmap[-1]
108 funcmap[-1] = lambda x: "%s:%s" % (lastfunc(x), x[1])
108 funcmap[-1] = lambda x: "%s:%s" % (lastfunc(x), x[1])
109
109
110 ctx = repo[opts.get('rev')]
110 ctx = repo[opts.get('rev')]
111
111
112 m = cmdutil.match(repo, pats, opts)
112 m = cmdutil.match(repo, pats, opts)
113 for abs in ctx.walk(m):
113 for abs in ctx.walk(m):
114 fctx = ctx[abs]
114 fctx = ctx[abs]
115 if not opts.get('text') and util.binary(fctx.data()):
115 if not opts.get('text') and util.binary(fctx.data()):
116 ui.write(_("%s: binary file\n") % ((pats and m.rel(abs)) or abs))
116 ui.write(_("%s: binary file\n") % ((pats and m.rel(abs)) or abs))
117 continue
117 continue
118
118
119 lines = fctx.annotate(follow=opts.get('follow'),
119 lines = fctx.annotate(follow=opts.get('follow'),
120 linenumber=linenumber)
120 linenumber=linenumber)
121 pieces = []
121 pieces = []
122
122
123 for f in funcmap:
123 for f in funcmap:
124 l = [f(n) for n, dummy in lines]
124 l = [f(n) for n, dummy in lines]
125 if l:
125 if l:
126 ml = max(map(len, l))
126 ml = max(map(len, l))
127 pieces.append(["%*s" % (ml, x) for x in l])
127 pieces.append(["%*s" % (ml, x) for x in l])
128
128
129 if pieces:
129 if pieces:
130 for p, l in zip(zip(*pieces), lines):
130 for p, l in zip(zip(*pieces), lines):
131 ui.write("%s: %s" % (" ".join(p), l[1]))
131 ui.write("%s: %s" % (" ".join(p), l[1]))
132
132
133 def archive(ui, repo, dest, **opts):
133 def archive(ui, repo, dest, **opts):
134 '''create unversioned archive of a repository revision
134 '''create unversioned archive of a repository revision
135
135
136 By default, the revision used is the parent of the working
136 By default, the revision used is the parent of the working
137 directory; use "-r" to specify a different revision.
137 directory; use "-r" to specify a different revision.
138
138
139 To specify the type of archive to create, use "-t". Valid
139 To specify the type of archive to create, use "-t". Valid
140 types are:
140 types are:
141
141
142 "files" (default): a directory full of files
142 "files" (default): a directory full of files
143 "tar": tar archive, uncompressed
143 "tar": tar archive, uncompressed
144 "tbz2": tar archive, compressed using bzip2
144 "tbz2": tar archive, compressed using bzip2
145 "tgz": tar archive, compressed using gzip
145 "tgz": tar archive, compressed using gzip
146 "uzip": zip archive, uncompressed
146 "uzip": zip archive, uncompressed
147 "zip": zip archive, compressed using deflate
147 "zip": zip archive, compressed using deflate
148
148
149 The exact name of the destination archive or directory is given
149 The exact name of the destination archive or directory is given
150 using a format string; see "hg help export" for details.
150 using a format string; see "hg help export" for details.
151
151
152 Each member added to an archive file has a directory prefix
152 Each member added to an archive file has a directory prefix
153 prepended. Use "-p" to specify a format string for the prefix.
153 prepended. Use "-p" to specify a format string for the prefix.
154 The default is the basename of the archive, with suffixes removed.
154 The default is the basename of the archive, with suffixes removed.
155 '''
155 '''
156
156
157 ctx = repo[opts.get('rev')]
157 ctx = repo[opts.get('rev')]
158 if not ctx:
158 if not ctx:
159 raise util.Abort(_('repository has no revisions'))
159 raise util.Abort(_('repository has no revisions'))
160 node = ctx.node()
160 node = ctx.node()
161 dest = cmdutil.make_filename(repo, dest, node)
161 dest = cmdutil.make_filename(repo, dest, node)
162 if os.path.realpath(dest) == repo.root:
162 if os.path.realpath(dest) == repo.root:
163 raise util.Abort(_('repository root cannot be destination'))
163 raise util.Abort(_('repository root cannot be destination'))
164 matchfn = cmdutil.match(repo, [], opts)
164 matchfn = cmdutil.match(repo, [], opts)
165 kind = opts.get('type') or 'files'
165 kind = opts.get('type') or 'files'
166 prefix = opts.get('prefix')
166 prefix = opts.get('prefix')
167 if dest == '-':
167 if dest == '-':
168 if kind == 'files':
168 if kind == 'files':
169 raise util.Abort(_('cannot archive plain files to stdout'))
169 raise util.Abort(_('cannot archive plain files to stdout'))
170 dest = sys.stdout
170 dest = sys.stdout
171 if not prefix: prefix = os.path.basename(repo.root) + '-%h'
171 if not prefix: prefix = os.path.basename(repo.root) + '-%h'
172 prefix = cmdutil.make_filename(repo, prefix, node)
172 prefix = cmdutil.make_filename(repo, prefix, node)
173 archival.archive(repo, dest, node, kind, not opts.get('no_decode'),
173 archival.archive(repo, dest, node, kind, not opts.get('no_decode'),
174 matchfn, prefix)
174 matchfn, prefix)
175
175
176 def backout(ui, repo, node=None, rev=None, **opts):
176 def backout(ui, repo, node=None, rev=None, **opts):
177 '''reverse effect of earlier changeset
177 '''reverse effect of earlier changeset
178
178
179 Commit the backed out changes as a new changeset. The new
179 Commit the backed out changes as a new changeset. The new
180 changeset is a child of the backed out changeset.
180 changeset is a child of the backed out changeset.
181
181
182 If you back out a changeset other than the tip, a new head is
182 If you back out a changeset other than the tip, a new head is
183 created. This head will be the new tip and you should merge this
183 created. This head will be the new tip and you should merge this
184 backout changeset with another head (current one by default).
184 backout changeset with another head (current one by default).
185
185
186 The --merge option remembers the parent of the working directory
186 The --merge option remembers the parent of the working directory
187 before starting the backout, then merges the new head with that
187 before starting the backout, then merges the new head with that
188 changeset afterwards. This saves you from doing the merge by
188 changeset afterwards. This saves you from doing the merge by
189 hand. The result of this merge is not committed, as for a normal
189 hand. The result of this merge is not committed, as for a normal
190 merge.
190 merge.
191
191
192 See \'hg help dates\' for a list of formats valid for -d/--date.
192 See \'hg help dates\' for a list of formats valid for -d/--date.
193 '''
193 '''
194 if rev and node:
194 if rev and node:
195 raise util.Abort(_("please specify just one revision"))
195 raise util.Abort(_("please specify just one revision"))
196
196
197 if not rev:
197 if not rev:
198 rev = node
198 rev = node
199
199
200 if not rev:
200 if not rev:
201 raise util.Abort(_("please specify a revision to backout"))
201 raise util.Abort(_("please specify a revision to backout"))
202
202
203 date = opts.get('date')
203 date = opts.get('date')
204 if date:
204 if date:
205 opts['date'] = util.parsedate(date)
205 opts['date'] = util.parsedate(date)
206
206
207 cmdutil.bail_if_changed(repo)
207 cmdutil.bail_if_changed(repo)
208 node = repo.lookup(rev)
208 node = repo.lookup(rev)
209
209
210 op1, op2 = repo.dirstate.parents()
210 op1, op2 = repo.dirstate.parents()
211 a = repo.changelog.ancestor(op1, node)
211 a = repo.changelog.ancestor(op1, node)
212 if a != node:
212 if a != node:
213 raise util.Abort(_('cannot back out change on a different branch'))
213 raise util.Abort(_('cannot back out change on a different branch'))
214
214
215 p1, p2 = repo.changelog.parents(node)
215 p1, p2 = repo.changelog.parents(node)
216 if p1 == nullid:
216 if p1 == nullid:
217 raise util.Abort(_('cannot back out a change with no parents'))
217 raise util.Abort(_('cannot back out a change with no parents'))
218 if p2 != nullid:
218 if p2 != nullid:
219 if not opts.get('parent'):
219 if not opts.get('parent'):
220 raise util.Abort(_('cannot back out a merge changeset without '
220 raise util.Abort(_('cannot back out a merge changeset without '
221 '--parent'))
221 '--parent'))
222 p = repo.lookup(opts['parent'])
222 p = repo.lookup(opts['parent'])
223 if p not in (p1, p2):
223 if p not in (p1, p2):
224 raise util.Abort(_('%s is not a parent of %s') %
224 raise util.Abort(_('%s is not a parent of %s') %
225 (short(p), short(node)))
225 (short(p), short(node)))
226 parent = p
226 parent = p
227 else:
227 else:
228 if opts.get('parent'):
228 if opts.get('parent'):
229 raise util.Abort(_('cannot use --parent on non-merge changeset'))
229 raise util.Abort(_('cannot use --parent on non-merge changeset'))
230 parent = p1
230 parent = p1
231
231
232 # the backout should appear on the same branch
232 # the backout should appear on the same branch
233 branch = repo.dirstate.branch()
233 branch = repo.dirstate.branch()
234 hg.clean(repo, node, show_stats=False)
234 hg.clean(repo, node, show_stats=False)
235 repo.dirstate.setbranch(branch)
235 repo.dirstate.setbranch(branch)
236 revert_opts = opts.copy()
236 revert_opts = opts.copy()
237 revert_opts['date'] = None
237 revert_opts['date'] = None
238 revert_opts['all'] = True
238 revert_opts['all'] = True
239 revert_opts['rev'] = hex(parent)
239 revert_opts['rev'] = hex(parent)
240 revert_opts['no_backup'] = None
240 revert_opts['no_backup'] = None
241 revert(ui, repo, **revert_opts)
241 revert(ui, repo, **revert_opts)
242 commit_opts = opts.copy()
242 commit_opts = opts.copy()
243 commit_opts['addremove'] = False
243 commit_opts['addremove'] = False
244 if not commit_opts['message'] and not commit_opts['logfile']:
244 if not commit_opts['message'] and not commit_opts['logfile']:
245 commit_opts['message'] = _("Backed out changeset %s") % (short(node))
245 commit_opts['message'] = _("Backed out changeset %s") % (short(node))
246 commit_opts['force_editor'] = True
246 commit_opts['force_editor'] = True
247 commit(ui, repo, **commit_opts)
247 commit(ui, repo, **commit_opts)
248 def nice(node):
248 def nice(node):
249 return '%d:%s' % (repo.changelog.rev(node), short(node))
249 return '%d:%s' % (repo.changelog.rev(node), short(node))
250 ui.status(_('changeset %s backs out changeset %s\n') %
250 ui.status(_('changeset %s backs out changeset %s\n') %
251 (nice(repo.changelog.tip()), nice(node)))
251 (nice(repo.changelog.tip()), nice(node)))
252 if op1 != node:
252 if op1 != node:
253 hg.clean(repo, op1, show_stats=False)
253 hg.clean(repo, op1, show_stats=False)
254 if opts.get('merge'):
254 if opts.get('merge'):
255 ui.status(_('merging with changeset %s\n') % nice(repo.changelog.tip()))
255 ui.status(_('merging with changeset %s\n') % nice(repo.changelog.tip()))
256 hg.merge(repo, hex(repo.changelog.tip()))
256 hg.merge(repo, hex(repo.changelog.tip()))
257 else:
257 else:
258 ui.status(_('the backout changeset is a new head - '
258 ui.status(_('the backout changeset is a new head - '
259 'do not forget to merge\n'))
259 'do not forget to merge\n'))
260 ui.status(_('(use "backout --merge" '
260 ui.status(_('(use "backout --merge" '
261 'if you want to auto-merge)\n'))
261 'if you want to auto-merge)\n'))
262
262
263 def bisect(ui, repo, rev=None, extra=None, command=None,
263 def bisect(ui, repo, rev=None, extra=None, command=None,
264 reset=None, good=None, bad=None, skip=None, noupdate=None):
264 reset=None, good=None, bad=None, skip=None, noupdate=None):
265 """subdivision search of changesets
265 """subdivision search of changesets
266
266
267 This command helps to find changesets which introduce problems.
267 This command helps to find changesets which introduce problems.
268 To use, mark the earliest changeset you know exhibits the problem
268 To use, mark the earliest changeset you know exhibits the problem
269 as bad, then mark the latest changeset which is free from the
269 as bad, then mark the latest changeset which is free from the
270 problem as good. Bisect will update your working directory to a
270 problem as good. Bisect will update your working directory to a
271 revision for testing (unless the --noupdate option is specified).
271 revision for testing (unless the --noupdate option is specified).
272 Once you have performed tests, mark the working directory as bad
272 Once you have performed tests, mark the working directory as bad
273 or good and bisect will either update to another candidate changeset
273 or good and bisect will either update to another candidate changeset
274 or announce that it has found the bad revision.
274 or announce that it has found the bad revision.
275
275
276 As a shortcut, you can also use the revision argument to mark a
276 As a shortcut, you can also use the revision argument to mark a
277 revision as good or bad without checking it out first.
277 revision as good or bad without checking it out first.
278
278
279 If you supply a command it will be used for automatic bisection. Its
279 If you supply a command it will be used for automatic bisection. Its exit
280 exit status will be used as flag to mark revision as bad or good (good
280 status will be used as flag to mark revision as bad or good. In case exit
281 in case of 0 and bad in any other case).
281 status is 0 the revision is marked as good, 125 - skipped, 127 (command not
282 found) - bisection will be aborted and any other status bigger than 0 will
283 mark revision as bad.
282 """
284 """
283 def print_result(nodes, good):
285 def print_result(nodes, good):
284 displayer = cmdutil.show_changeset(ui, repo, {})
286 displayer = cmdutil.show_changeset(ui, repo, {})
285 transition = (good and "good" or "bad")
287 transition = (good and "good" or "bad")
286 if len(nodes) == 1:
288 if len(nodes) == 1:
287 # narrowed it down to a single revision
289 # narrowed it down to a single revision
288 ui.write(_("The first %s revision is:\n") % transition)
290 ui.write(_("The first %s revision is:\n") % transition)
289 displayer.show(changenode=nodes[0])
291 displayer.show(changenode=nodes[0])
290 else:
292 else:
291 # multiple possible revisions
293 # multiple possible revisions
292 ui.write(_("Due to skipped revisions, the first "
294 ui.write(_("Due to skipped revisions, the first "
293 "%s revision could be any of:\n") % transition)
295 "%s revision could be any of:\n") % transition)
294 for n in nodes:
296 for n in nodes:
295 displayer.show(changenode=n)
297 displayer.show(changenode=n)
296
298
297 def check_state(state, interactive=True):
299 def check_state(state, interactive=True):
298 if not state['good'] or not state['bad']:
300 if not state['good'] or not state['bad']:
299 if (good or bad or skip or reset) and interactive:
301 if (good or bad or skip or reset) and interactive:
300 return
302 return
301 if not state['good']:
303 if not state['good']:
302 raise util.Abort(_('cannot bisect (no known good revisions)'))
304 raise util.Abort(_('cannot bisect (no known good revisions)'))
303 else:
305 else:
304 raise util.Abort(_('cannot bisect (no known bad revisions)'))
306 raise util.Abort(_('cannot bisect (no known bad revisions)'))
305 return True
307 return True
306
308
307 # backward compatibility
309 # backward compatibility
308 if rev in "good bad reset init".split():
310 if rev in "good bad reset init".split():
309 ui.warn(_("(use of 'hg bisect <cmd>' is deprecated)\n"))
311 ui.warn(_("(use of 'hg bisect <cmd>' is deprecated)\n"))
310 cmd, rev, extra = rev, extra, None
312 cmd, rev, extra = rev, extra, None
311 if cmd == "good":
313 if cmd == "good":
312 good = True
314 good = True
313 elif cmd == "bad":
315 elif cmd == "bad":
314 bad = True
316 bad = True
315 else:
317 else:
316 reset = True
318 reset = True
317 elif extra or good + bad + skip + reset + bool(command) > 1:
319 elif extra or good + bad + skip + reset + bool(command) > 1:
318 raise util.Abort(_('incompatible arguments'))
320 raise util.Abort(_('incompatible arguments'))
319
321
320 if reset:
322 if reset:
321 p = repo.join("bisect.state")
323 p = repo.join("bisect.state")
322 if os.path.exists(p):
324 if os.path.exists(p):
323 os.unlink(p)
325 os.unlink(p)
324 return
326 return
325
327
326 state = hbisect.load_state(repo)
328 state = hbisect.load_state(repo)
327
329
328 if command:
330 if command:
329 changesets = 1
331 changesets = 1
330 while changesets:
332 while changesets:
331 # check state
333 # update state
332 status = bool(list(os.popen3(command)[2]))
334 status = os.spawnlp(os.P_WAIT, command)
333 node = repo.lookup(rev or '.')
335 node = repo.lookup(rev or '.')
334 transition = (status and 'bad' or 'good')
336 if status == 125:
337 transition = "skip"
338 elif status == 0:
339 transition = "good"
340 # status < 0 means process was killed
341 elif status == 127 or status < 0:
342 break
343 else:
344 transition = "bad"
335 state[transition].append(node)
345 state[transition].append(node)
336 ui.note(_('Changeset %s: %s\n') % (short(node), transition))
346 ui.note(_('Changeset %s: %s\n') % (short(node), transition))
337 check_state(state, interactive=False)
347 check_state(state, interactive=False)
338 # bisect
348 # bisect
339 nodes, changesets, good = hbisect.bisect(repo.changelog, state)
349 nodes, changesets, good = hbisect.bisect(repo.changelog, state)
340 # update to next check
350 # update to next check
341 cmdutil.bail_if_changed(repo)
351 cmdutil.bail_if_changed(repo)
342 hg.clean(repo, nodes[0], show_stats=False)
352 hg.clean(repo, nodes[0], show_stats=False)
343 hbisect.save_state(repo, state)
353 hbisect.save_state(repo, state)
344 return print_result(nodes, not status)
354 return print_result(nodes, not status)
345
355
346 # update state
356 # update state
347 node = repo.lookup(rev or '.')
357 node = repo.lookup(rev or '.')
348 if good:
358 if good:
349 state['good'].append(node)
359 state['good'].append(node)
350 elif bad:
360 elif bad:
351 state['bad'].append(node)
361 state['bad'].append(node)
352 elif skip:
362 elif skip:
353 state['skip'].append(node)
363 state['skip'].append(node)
354
364
355 hbisect.save_state(repo, state)
365 hbisect.save_state(repo, state)
356
366
357 if not check_state(state):
367 if not check_state(state):
358 return
368 return
359
369
360 # actually bisect
370 # actually bisect
361 nodes, changesets, good = hbisect.bisect(repo.changelog, state)
371 nodes, changesets, good = hbisect.bisect(repo.changelog, state)
362 if changesets == 0:
372 if changesets == 0:
363 print_result(nodes, good)
373 print_result(nodes, good)
364 else:
374 else:
365 assert len(nodes) == 1 # only a single node can be tested next
375 assert len(nodes) == 1 # only a single node can be tested next
366 node = nodes[0]
376 node = nodes[0]
367 # compute the approximate number of remaining tests
377 # compute the approximate number of remaining tests
368 tests, size = 0, 2
378 tests, size = 0, 2
369 while size <= changesets:
379 while size <= changesets:
370 tests, size = tests + 1, size * 2
380 tests, size = tests + 1, size * 2
371 rev = repo.changelog.rev(node)
381 rev = repo.changelog.rev(node)
372 ui.write(_("Testing changeset %s:%s "
382 ui.write(_("Testing changeset %s:%s "
373 "(%s changesets remaining, ~%s tests)\n")
383 "(%s changesets remaining, ~%s tests)\n")
374 % (rev, short(node), changesets, tests))
384 % (rev, short(node), changesets, tests))
375 if not noupdate:
385 if not noupdate:
376 cmdutil.bail_if_changed(repo)
386 cmdutil.bail_if_changed(repo)
377 return hg.clean(repo, node)
387 return hg.clean(repo, node)
378
388
379 def branch(ui, repo, label=None, **opts):
389 def branch(ui, repo, label=None, **opts):
380 """set or show the current branch name
390 """set or show the current branch name
381
391
382 With no argument, show the current branch name. With one argument,
392 With no argument, show the current branch name. With one argument,
383 set the working directory branch name (the branch does not exist in
393 set the working directory branch name (the branch does not exist in
384 the repository until the next commit).
394 the repository until the next commit).
385
395
386 Unless --force is specified, branch will not let you set a
396 Unless --force is specified, branch will not let you set a
387 branch name that shadows an existing branch.
397 branch name that shadows an existing branch.
388
398
389 Use --clean to reset the working directory branch to that of the
399 Use --clean to reset the working directory branch to that of the
390 parent of the working directory, negating a previous branch change.
400 parent of the working directory, negating a previous branch change.
391
401
392 Use the command 'hg update' to switch to an existing branch.
402 Use the command 'hg update' to switch to an existing branch.
393 """
403 """
394
404
395 if opts.get('clean'):
405 if opts.get('clean'):
396 label = repo[None].parents()[0].branch()
406 label = repo[None].parents()[0].branch()
397 repo.dirstate.setbranch(label)
407 repo.dirstate.setbranch(label)
398 ui.status(_('reset working directory to branch %s\n') % label)
408 ui.status(_('reset working directory to branch %s\n') % label)
399 elif label:
409 elif label:
400 if not opts.get('force') and label in repo.branchtags():
410 if not opts.get('force') and label in repo.branchtags():
401 if label not in [p.branch() for p in repo.parents()]:
411 if label not in [p.branch() for p in repo.parents()]:
402 raise util.Abort(_('a branch of the same name already exists'
412 raise util.Abort(_('a branch of the same name already exists'
403 ' (use --force to override)'))
413 ' (use --force to override)'))
404 repo.dirstate.setbranch(util.fromlocal(label))
414 repo.dirstate.setbranch(util.fromlocal(label))
405 ui.status(_('marked working directory as branch %s\n') % label)
415 ui.status(_('marked working directory as branch %s\n') % label)
406 else:
416 else:
407 ui.write("%s\n" % util.tolocal(repo.dirstate.branch()))
417 ui.write("%s\n" % util.tolocal(repo.dirstate.branch()))
408
418
409 def branches(ui, repo, active=False):
419 def branches(ui, repo, active=False):
410 """list repository named branches
420 """list repository named branches
411
421
412 List the repository's named branches, indicating which ones are
422 List the repository's named branches, indicating which ones are
413 inactive. If active is specified, only show active branches.
423 inactive. If active is specified, only show active branches.
414
424
415 A branch is considered active if it contains repository heads.
425 A branch is considered active if it contains repository heads.
416
426
417 Use the command 'hg update' to switch to an existing branch.
427 Use the command 'hg update' to switch to an existing branch.
418 """
428 """
419 hexfunc = ui.debugflag and hex or short
429 hexfunc = ui.debugflag and hex or short
420 activebranches = [util.tolocal(repo[n].branch())
430 activebranches = [util.tolocal(repo[n].branch())
421 for n in repo.heads()]
431 for n in repo.heads()]
422 branches = util.sort([(tag in activebranches, repo.changelog.rev(node), tag)
432 branches = util.sort([(tag in activebranches, repo.changelog.rev(node), tag)
423 for tag, node in repo.branchtags().items()])
433 for tag, node in repo.branchtags().items()])
424 branches.reverse()
434 branches.reverse()
425
435
426 for isactive, node, tag in branches:
436 for isactive, node, tag in branches:
427 if (not active) or isactive:
437 if (not active) or isactive:
428 if ui.quiet:
438 if ui.quiet:
429 ui.write("%s\n" % tag)
439 ui.write("%s\n" % tag)
430 else:
440 else:
431 rev = str(node).rjust(31 - util.locallen(tag))
441 rev = str(node).rjust(31 - util.locallen(tag))
432 isinactive = ((not isactive) and " (inactive)") or ''
442 isinactive = ((not isactive) and " (inactive)") or ''
433 data = tag, rev, hexfunc(repo.lookup(node)), isinactive
443 data = tag, rev, hexfunc(repo.lookup(node)), isinactive
434 ui.write("%s %s:%s%s\n" % data)
444 ui.write("%s %s:%s%s\n" % data)
435
445
436 def bundle(ui, repo, fname, dest=None, **opts):
446 def bundle(ui, repo, fname, dest=None, **opts):
437 """create a changegroup file
447 """create a changegroup file
438
448
439 Generate a compressed changegroup file collecting changesets not
449 Generate a compressed changegroup file collecting changesets not
440 found in the other repository.
450 found in the other repository.
441
451
442 If no destination repository is specified the destination is
452 If no destination repository is specified the destination is
443 assumed to have all the nodes specified by one or more --base
453 assumed to have all the nodes specified by one or more --base
444 parameters. To create a bundle containing all changesets, use
454 parameters. To create a bundle containing all changesets, use
445 --all (or --base null). To change the compression method applied,
455 --all (or --base null). To change the compression method applied,
446 use the -t option (by default, bundles are compressed using bz2).
456 use the -t option (by default, bundles are compressed using bz2).
447
457
448 The bundle file can then be transferred using conventional means and
458 The bundle file can then be transferred using conventional means and
449 applied to another repository with the unbundle or pull command.
459 applied to another repository with the unbundle or pull command.
450 This is useful when direct push and pull are not available or when
460 This is useful when direct push and pull are not available or when
451 exporting an entire repository is undesirable.
461 exporting an entire repository is undesirable.
452
462
453 Applying bundles preserves all changeset contents including
463 Applying bundles preserves all changeset contents including
454 permissions, copy/rename information, and revision history.
464 permissions, copy/rename information, and revision history.
455 """
465 """
456 revs = opts.get('rev') or None
466 revs = opts.get('rev') or None
457 if revs:
467 if revs:
458 revs = [repo.lookup(rev) for rev in revs]
468 revs = [repo.lookup(rev) for rev in revs]
459 if opts.get('all'):
469 if opts.get('all'):
460 base = ['null']
470 base = ['null']
461 else:
471 else:
462 base = opts.get('base')
472 base = opts.get('base')
463 if base:
473 if base:
464 if dest:
474 if dest:
465 raise util.Abort(_("--base is incompatible with specifiying "
475 raise util.Abort(_("--base is incompatible with specifiying "
466 "a destination"))
476 "a destination"))
467 base = [repo.lookup(rev) for rev in base]
477 base = [repo.lookup(rev) for rev in base]
468 # create the right base
478 # create the right base
469 # XXX: nodesbetween / changegroup* should be "fixed" instead
479 # XXX: nodesbetween / changegroup* should be "fixed" instead
470 o = []
480 o = []
471 has = {nullid: None}
481 has = {nullid: None}
472 for n in base:
482 for n in base:
473 has.update(repo.changelog.reachable(n))
483 has.update(repo.changelog.reachable(n))
474 if revs:
484 if revs:
475 visit = list(revs)
485 visit = list(revs)
476 else:
486 else:
477 visit = repo.changelog.heads()
487 visit = repo.changelog.heads()
478 seen = {}
488 seen = {}
479 while visit:
489 while visit:
480 n = visit.pop(0)
490 n = visit.pop(0)
481 parents = [p for p in repo.changelog.parents(n) if p not in has]
491 parents = [p for p in repo.changelog.parents(n) if p not in has]
482 if len(parents) == 0:
492 if len(parents) == 0:
483 o.insert(0, n)
493 o.insert(0, n)
484 else:
494 else:
485 for p in parents:
495 for p in parents:
486 if p not in seen:
496 if p not in seen:
487 seen[p] = 1
497 seen[p] = 1
488 visit.append(p)
498 visit.append(p)
489 else:
499 else:
490 cmdutil.setremoteconfig(ui, opts)
500 cmdutil.setremoteconfig(ui, opts)
491 dest, revs, checkout = hg.parseurl(
501 dest, revs, checkout = hg.parseurl(
492 ui.expandpath(dest or 'default-push', dest or 'default'), revs)
502 ui.expandpath(dest or 'default-push', dest or 'default'), revs)
493 other = hg.repository(ui, dest)
503 other = hg.repository(ui, dest)
494 o = repo.findoutgoing(other, force=opts.get('force'))
504 o = repo.findoutgoing(other, force=opts.get('force'))
495
505
496 if revs:
506 if revs:
497 cg = repo.changegroupsubset(o, revs, 'bundle')
507 cg = repo.changegroupsubset(o, revs, 'bundle')
498 else:
508 else:
499 cg = repo.changegroup(o, 'bundle')
509 cg = repo.changegroup(o, 'bundle')
500
510
501 bundletype = opts.get('type', 'bzip2').lower()
511 bundletype = opts.get('type', 'bzip2').lower()
502 btypes = {'none': 'HG10UN', 'bzip2': 'HG10BZ', 'gzip': 'HG10GZ'}
512 btypes = {'none': 'HG10UN', 'bzip2': 'HG10BZ', 'gzip': 'HG10GZ'}
503 bundletype = btypes.get(bundletype)
513 bundletype = btypes.get(bundletype)
504 if bundletype not in changegroup.bundletypes:
514 if bundletype not in changegroup.bundletypes:
505 raise util.Abort(_('unknown bundle type specified with --type'))
515 raise util.Abort(_('unknown bundle type specified with --type'))
506
516
507 changegroup.writebundle(cg, fname, bundletype)
517 changegroup.writebundle(cg, fname, bundletype)
508
518
509 def cat(ui, repo, file1, *pats, **opts):
519 def cat(ui, repo, file1, *pats, **opts):
510 """output the current or given revision of files
520 """output the current or given revision of files
511
521
512 Print the specified files as they were at the given revision.
522 Print the specified files as they were at the given revision.
513 If no revision is given, the parent of the working directory is used,
523 If no revision is given, the parent of the working directory is used,
514 or tip if no revision is checked out.
524 or tip if no revision is checked out.
515
525
516 Output may be to a file, in which case the name of the file is
526 Output may be to a file, in which case the name of the file is
517 given using a format string. The formatting rules are the same as
527 given using a format string. The formatting rules are the same as
518 for the export command, with the following additions:
528 for the export command, with the following additions:
519
529
520 %s basename of file being printed
530 %s basename of file being printed
521 %d dirname of file being printed, or '.' if in repo root
531 %d dirname of file being printed, or '.' if in repo root
522 %p root-relative path name of file being printed
532 %p root-relative path name of file being printed
523 """
533 """
524 ctx = repo[opts.get('rev')]
534 ctx = repo[opts.get('rev')]
525 err = 1
535 err = 1
526 m = cmdutil.match(repo, (file1,) + pats, opts)
536 m = cmdutil.match(repo, (file1,) + pats, opts)
527 for abs in ctx.walk(m):
537 for abs in ctx.walk(m):
528 fp = cmdutil.make_file(repo, opts.get('output'), ctx.node(), pathname=abs)
538 fp = cmdutil.make_file(repo, opts.get('output'), ctx.node(), pathname=abs)
529 data = ctx[abs].data()
539 data = ctx[abs].data()
530 if opts.get('decode'):
540 if opts.get('decode'):
531 data = repo.wwritedata(abs, data)
541 data = repo.wwritedata(abs, data)
532 fp.write(data)
542 fp.write(data)
533 err = 0
543 err = 0
534 return err
544 return err
535
545
536 def clone(ui, source, dest=None, **opts):
546 def clone(ui, source, dest=None, **opts):
537 """make a copy of an existing repository
547 """make a copy of an existing repository
538
548
539 Create a copy of an existing repository in a new directory.
549 Create a copy of an existing repository in a new directory.
540
550
541 If no destination directory name is specified, it defaults to the
551 If no destination directory name is specified, it defaults to the
542 basename of the source.
552 basename of the source.
543
553
544 The location of the source is added to the new repository's
554 The location of the source is added to the new repository's
545 .hg/hgrc file, as the default to be used for future pulls.
555 .hg/hgrc file, as the default to be used for future pulls.
546
556
547 For efficiency, hardlinks are used for cloning whenever the source
557 For efficiency, hardlinks are used for cloning whenever the source
548 and destination are on the same filesystem (note this applies only
558 and destination are on the same filesystem (note this applies only
549 to the repository data, not to the checked out files). Some
559 to the repository data, not to the checked out files). Some
550 filesystems, such as AFS, implement hardlinking incorrectly, but
560 filesystems, such as AFS, implement hardlinking incorrectly, but
551 do not report errors. In these cases, use the --pull option to
561 do not report errors. In these cases, use the --pull option to
552 avoid hardlinking.
562 avoid hardlinking.
553
563
554 In some cases, you can clone repositories and checked out files
564 In some cases, you can clone repositories and checked out files
555 using full hardlinks with
565 using full hardlinks with
556
566
557 $ cp -al REPO REPOCLONE
567 $ cp -al REPO REPOCLONE
558
568
559 This is the fastest way to clone, but it is not always safe. The
569 This is the fastest way to clone, but it is not always safe. The
560 operation is not atomic (making sure REPO is not modified during
570 operation is not atomic (making sure REPO is not modified during
561 the operation is up to you) and you have to make sure your editor
571 the operation is up to you) and you have to make sure your editor
562 breaks hardlinks (Emacs and most Linux Kernel tools do so). Also,
572 breaks hardlinks (Emacs and most Linux Kernel tools do so). Also,
563 this is not compatible with certain extensions that place their
573 this is not compatible with certain extensions that place their
564 metadata under the .hg directory, such as mq.
574 metadata under the .hg directory, such as mq.
565
575
566 If you use the -r option to clone up to a specific revision, no
576 If you use the -r option to clone up to a specific revision, no
567 subsequent revisions will be present in the cloned repository.
577 subsequent revisions will be present in the cloned repository.
568 This option implies --pull, even on local repositories.
578 This option implies --pull, even on local repositories.
569
579
570 If the -U option is used, the new clone will contain only a repository
580 If the -U option is used, the new clone will contain only a repository
571 (.hg) and no working copy (the working copy parent is the null revision).
581 (.hg) and no working copy (the working copy parent is the null revision).
572
582
573 See pull for valid source format details.
583 See pull for valid source format details.
574
584
575 It is possible to specify an ssh:// URL as the destination, but no
585 It is possible to specify an ssh:// URL as the destination, but no
576 .hg/hgrc and working directory will be created on the remote side.
586 .hg/hgrc and working directory will be created on the remote side.
577 Look at the help text for the pull command for important details
587 Look at the help text for the pull command for important details
578 about ssh:// URLs.
588 about ssh:// URLs.
579 """
589 """
580 cmdutil.setremoteconfig(ui, opts)
590 cmdutil.setremoteconfig(ui, opts)
581 hg.clone(ui, source, dest,
591 hg.clone(ui, source, dest,
582 pull=opts.get('pull'),
592 pull=opts.get('pull'),
583 stream=opts.get('uncompressed'),
593 stream=opts.get('uncompressed'),
584 rev=opts.get('rev'),
594 rev=opts.get('rev'),
585 update=not opts.get('noupdate'))
595 update=not opts.get('noupdate'))
586
596
587 def commit(ui, repo, *pats, **opts):
597 def commit(ui, repo, *pats, **opts):
588 """commit the specified files or all outstanding changes
598 """commit the specified files or all outstanding changes
589
599
590 Commit changes to the given files into the repository.
600 Commit changes to the given files into the repository.
591
601
592 If a list of files is omitted, all changes reported by "hg status"
602 If a list of files is omitted, all changes reported by "hg status"
593 will be committed.
603 will be committed.
594
604
595 If you are committing the result of a merge, do not provide any
605 If you are committing the result of a merge, do not provide any
596 file names or -I/-X filters.
606 file names or -I/-X filters.
597
607
598 If no commit message is specified, the configured editor is started to
608 If no commit message is specified, the configured editor is started to
599 enter a message.
609 enter a message.
600
610
601 See 'hg help dates' for a list of formats valid for -d/--date.
611 See 'hg help dates' for a list of formats valid for -d/--date.
602 """
612 """
603 def commitfunc(ui, repo, message, match, opts):
613 def commitfunc(ui, repo, message, match, opts):
604 return repo.commit(match.files(), message, opts.get('user'), opts.get('date'),
614 return repo.commit(match.files(), message, opts.get('user'), opts.get('date'),
605 match, force_editor=opts.get('force_editor'))
615 match, force_editor=opts.get('force_editor'))
606
616
607 node = cmdutil.commit(ui, repo, commitfunc, pats, opts)
617 node = cmdutil.commit(ui, repo, commitfunc, pats, opts)
608 if not node:
618 if not node:
609 return
619 return
610 cl = repo.changelog
620 cl = repo.changelog
611 rev = cl.rev(node)
621 rev = cl.rev(node)
612 parents = cl.parentrevs(rev)
622 parents = cl.parentrevs(rev)
613 if rev - 1 in parents:
623 if rev - 1 in parents:
614 # one of the parents was the old tip
624 # one of the parents was the old tip
615 pass
625 pass
616 elif (parents == (nullrev, nullrev) or
626 elif (parents == (nullrev, nullrev) or
617 len(cl.heads(cl.node(parents[0]))) > 1 and
627 len(cl.heads(cl.node(parents[0]))) > 1 and
618 (parents[1] == nullrev or len(cl.heads(cl.node(parents[1]))) > 1)):
628 (parents[1] == nullrev or len(cl.heads(cl.node(parents[1]))) > 1)):
619 ui.status(_('created new head\n'))
629 ui.status(_('created new head\n'))
620
630
621 if ui.debugflag:
631 if ui.debugflag:
622 ui.write(_('committed changeset %d:%s\n') % (rev,hex(node)))
632 ui.write(_('committed changeset %d:%s\n') % (rev,hex(node)))
623 elif ui.verbose:
633 elif ui.verbose:
624 ui.write(_('committed changeset %d:%s\n') % (rev,short(node)))
634 ui.write(_('committed changeset %d:%s\n') % (rev,short(node)))
625
635
626 def copy(ui, repo, *pats, **opts):
636 def copy(ui, repo, *pats, **opts):
627 """mark files as copied for the next commit
637 """mark files as copied for the next commit
628
638
629 Mark dest as having copies of source files. If dest is a
639 Mark dest as having copies of source files. If dest is a
630 directory, copies are put in that directory. If dest is a file,
640 directory, copies are put in that directory. If dest is a file,
631 there can only be one source.
641 there can only be one source.
632
642
633 By default, this command copies the contents of files as they
643 By default, this command copies the contents of files as they
634 stand in the working directory. If invoked with --after, the
644 stand in the working directory. If invoked with --after, the
635 operation is recorded, but no copying is performed.
645 operation is recorded, but no copying is performed.
636
646
637 This command takes effect in the next commit. To undo a copy
647 This command takes effect in the next commit. To undo a copy
638 before that, see hg revert.
648 before that, see hg revert.
639 """
649 """
640 wlock = repo.wlock(False)
650 wlock = repo.wlock(False)
641 try:
651 try:
642 return cmdutil.copy(ui, repo, pats, opts)
652 return cmdutil.copy(ui, repo, pats, opts)
643 finally:
653 finally:
644 del wlock
654 del wlock
645
655
646 def debugancestor(ui, repo, *args):
656 def debugancestor(ui, repo, *args):
647 """find the ancestor revision of two revisions in a given index"""
657 """find the ancestor revision of two revisions in a given index"""
648 if len(args) == 3:
658 if len(args) == 3:
649 index, rev1, rev2 = args
659 index, rev1, rev2 = args
650 r = revlog.revlog(util.opener(os.getcwd(), audit=False), index)
660 r = revlog.revlog(util.opener(os.getcwd(), audit=False), index)
651 lookup = r.lookup
661 lookup = r.lookup
652 elif len(args) == 2:
662 elif len(args) == 2:
653 if not repo:
663 if not repo:
654 raise util.Abort(_("There is no Mercurial repository here "
664 raise util.Abort(_("There is no Mercurial repository here "
655 "(.hg not found)"))
665 "(.hg not found)"))
656 rev1, rev2 = args
666 rev1, rev2 = args
657 r = repo.changelog
667 r = repo.changelog
658 lookup = repo.lookup
668 lookup = repo.lookup
659 else:
669 else:
660 raise util.Abort(_('either two or three arguments required'))
670 raise util.Abort(_('either two or three arguments required'))
661 a = r.ancestor(lookup(rev1), lookup(rev2))
671 a = r.ancestor(lookup(rev1), lookup(rev2))
662 ui.write("%d:%s\n" % (r.rev(a), hex(a)))
672 ui.write("%d:%s\n" % (r.rev(a), hex(a)))
663
673
664 def debugcomplete(ui, cmd='', **opts):
674 def debugcomplete(ui, cmd='', **opts):
665 """returns the completion list associated with the given command"""
675 """returns the completion list associated with the given command"""
666
676
667 if opts.get('options'):
677 if opts.get('options'):
668 options = []
678 options = []
669 otables = [globalopts]
679 otables = [globalopts]
670 if cmd:
680 if cmd:
671 aliases, entry = cmdutil.findcmd(cmd, table, False)
681 aliases, entry = cmdutil.findcmd(cmd, table, False)
672 otables.append(entry[1])
682 otables.append(entry[1])
673 for t in otables:
683 for t in otables:
674 for o in t:
684 for o in t:
675 if o[0]:
685 if o[0]:
676 options.append('-%s' % o[0])
686 options.append('-%s' % o[0])
677 options.append('--%s' % o[1])
687 options.append('--%s' % o[1])
678 ui.write("%s\n" % "\n".join(options))
688 ui.write("%s\n" % "\n".join(options))
679 return
689 return
680
690
681 ui.write("%s\n" % "\n".join(util.sort(cmdutil.findpossible(cmd, table))))
691 ui.write("%s\n" % "\n".join(util.sort(cmdutil.findpossible(cmd, table))))
682
692
683 def debugfsinfo(ui, path = "."):
693 def debugfsinfo(ui, path = "."):
684 file('.debugfsinfo', 'w').write('')
694 file('.debugfsinfo', 'w').write('')
685 ui.write('exec: %s\n' % (util.checkexec(path) and 'yes' or 'no'))
695 ui.write('exec: %s\n' % (util.checkexec(path) and 'yes' or 'no'))
686 ui.write('symlink: %s\n' % (util.checklink(path) and 'yes' or 'no'))
696 ui.write('symlink: %s\n' % (util.checklink(path) and 'yes' or 'no'))
687 ui.write('case-sensitive: %s\n' % (util.checkcase('.debugfsinfo')
697 ui.write('case-sensitive: %s\n' % (util.checkcase('.debugfsinfo')
688 and 'yes' or 'no'))
698 and 'yes' or 'no'))
689 os.unlink('.debugfsinfo')
699 os.unlink('.debugfsinfo')
690
700
691 def debugrebuildstate(ui, repo, rev="tip"):
701 def debugrebuildstate(ui, repo, rev="tip"):
692 """rebuild the dirstate as it would look like for the given revision"""
702 """rebuild the dirstate as it would look like for the given revision"""
693 ctx = repo[rev]
703 ctx = repo[rev]
694 wlock = repo.wlock()
704 wlock = repo.wlock()
695 try:
705 try:
696 repo.dirstate.rebuild(ctx.node(), ctx.manifest())
706 repo.dirstate.rebuild(ctx.node(), ctx.manifest())
697 finally:
707 finally:
698 del wlock
708 del wlock
699
709
700 def debugcheckstate(ui, repo):
710 def debugcheckstate(ui, repo):
701 """validate the correctness of the current dirstate"""
711 """validate the correctness of the current dirstate"""
702 parent1, parent2 = repo.dirstate.parents()
712 parent1, parent2 = repo.dirstate.parents()
703 m1 = repo[parent1].manifest()
713 m1 = repo[parent1].manifest()
704 m2 = repo[parent2].manifest()
714 m2 = repo[parent2].manifest()
705 errors = 0
715 errors = 0
706 for f in repo.dirstate:
716 for f in repo.dirstate:
707 state = repo.dirstate[f]
717 state = repo.dirstate[f]
708 if state in "nr" and f not in m1:
718 if state in "nr" and f not in m1:
709 ui.warn(_("%s in state %s, but not in manifest1\n") % (f, state))
719 ui.warn(_("%s in state %s, but not in manifest1\n") % (f, state))
710 errors += 1
720 errors += 1
711 if state in "a" and f in m1:
721 if state in "a" and f in m1:
712 ui.warn(_("%s in state %s, but also in manifest1\n") % (f, state))
722 ui.warn(_("%s in state %s, but also in manifest1\n") % (f, state))
713 errors += 1
723 errors += 1
714 if state in "m" and f not in m1 and f not in m2:
724 if state in "m" and f not in m1 and f not in m2:
715 ui.warn(_("%s in state %s, but not in either manifest\n") %
725 ui.warn(_("%s in state %s, but not in either manifest\n") %
716 (f, state))
726 (f, state))
717 errors += 1
727 errors += 1
718 for f in m1:
728 for f in m1:
719 state = repo.dirstate[f]
729 state = repo.dirstate[f]
720 if state not in "nrm":
730 if state not in "nrm":
721 ui.warn(_("%s in manifest1, but listed as state %s") % (f, state))
731 ui.warn(_("%s in manifest1, but listed as state %s") % (f, state))
722 errors += 1
732 errors += 1
723 if errors:
733 if errors:
724 error = _(".hg/dirstate inconsistent with current parent's manifest")
734 error = _(".hg/dirstate inconsistent with current parent's manifest")
725 raise util.Abort(error)
735 raise util.Abort(error)
726
736
727 def showconfig(ui, repo, *values, **opts):
737 def showconfig(ui, repo, *values, **opts):
728 """show combined config settings from all hgrc files
738 """show combined config settings from all hgrc files
729
739
730 With no args, print names and values of all config items.
740 With no args, print names and values of all config items.
731
741
732 With one arg of the form section.name, print just the value of
742 With one arg of the form section.name, print just the value of
733 that config item.
743 that config item.
734
744
735 With multiple args, print names and values of all config items
745 With multiple args, print names and values of all config items
736 with matching section names."""
746 with matching section names."""
737
747
738 untrusted = bool(opts.get('untrusted'))
748 untrusted = bool(opts.get('untrusted'))
739 if values:
749 if values:
740 if len([v for v in values if '.' in v]) > 1:
750 if len([v for v in values if '.' in v]) > 1:
741 raise util.Abort(_('only one config item permitted'))
751 raise util.Abort(_('only one config item permitted'))
742 for section, name, value in ui.walkconfig(untrusted=untrusted):
752 for section, name, value in ui.walkconfig(untrusted=untrusted):
743 sectname = section + '.' + name
753 sectname = section + '.' + name
744 if values:
754 if values:
745 for v in values:
755 for v in values:
746 if v == section:
756 if v == section:
747 ui.write('%s=%s\n' % (sectname, value))
757 ui.write('%s=%s\n' % (sectname, value))
748 elif v == sectname:
758 elif v == sectname:
749 ui.write(value, '\n')
759 ui.write(value, '\n')
750 else:
760 else:
751 ui.write('%s=%s\n' % (sectname, value))
761 ui.write('%s=%s\n' % (sectname, value))
752
762
753 def debugsetparents(ui, repo, rev1, rev2=None):
763 def debugsetparents(ui, repo, rev1, rev2=None):
754 """manually set the parents of the current working directory
764 """manually set the parents of the current working directory
755
765
756 This is useful for writing repository conversion tools, but should
766 This is useful for writing repository conversion tools, but should
757 be used with care.
767 be used with care.
758 """
768 """
759
769
760 if not rev2:
770 if not rev2:
761 rev2 = hex(nullid)
771 rev2 = hex(nullid)
762
772
763 wlock = repo.wlock()
773 wlock = repo.wlock()
764 try:
774 try:
765 repo.dirstate.setparents(repo.lookup(rev1), repo.lookup(rev2))
775 repo.dirstate.setparents(repo.lookup(rev1), repo.lookup(rev2))
766 finally:
776 finally:
767 del wlock
777 del wlock
768
778
769 def debugstate(ui, repo, nodates=None):
779 def debugstate(ui, repo, nodates=None):
770 """show the contents of the current dirstate"""
780 """show the contents of the current dirstate"""
771 timestr = ""
781 timestr = ""
772 showdate = not nodates
782 showdate = not nodates
773 for file_, ent in util.sort(repo.dirstate._map.items()):
783 for file_, ent in util.sort(repo.dirstate._map.items()):
774 if showdate:
784 if showdate:
775 if ent[3] == -1:
785 if ent[3] == -1:
776 # Pad or slice to locale representation
786 # Pad or slice to locale representation
777 locale_len = len(time.strftime("%Y-%m-%d %H:%M:%S ", time.localtime(0)))
787 locale_len = len(time.strftime("%Y-%m-%d %H:%M:%S ", time.localtime(0)))
778 timestr = 'unset'
788 timestr = 'unset'
779 timestr = timestr[:locale_len] + ' '*(locale_len - len(timestr))
789 timestr = timestr[:locale_len] + ' '*(locale_len - len(timestr))
780 else:
790 else:
781 timestr = time.strftime("%Y-%m-%d %H:%M:%S ", time.localtime(ent[3]))
791 timestr = time.strftime("%Y-%m-%d %H:%M:%S ", time.localtime(ent[3]))
782 if ent[1] & 020000:
792 if ent[1] & 020000:
783 mode = 'lnk'
793 mode = 'lnk'
784 else:
794 else:
785 mode = '%3o' % (ent[1] & 0777)
795 mode = '%3o' % (ent[1] & 0777)
786 ui.write("%c %s %10d %s%s\n" % (ent[0], mode, ent[2], timestr, file_))
796 ui.write("%c %s %10d %s%s\n" % (ent[0], mode, ent[2], timestr, file_))
787 for f in repo.dirstate.copies():
797 for f in repo.dirstate.copies():
788 ui.write(_("copy: %s -> %s\n") % (repo.dirstate.copied(f), f))
798 ui.write(_("copy: %s -> %s\n") % (repo.dirstate.copied(f), f))
789
799
790 def debugdata(ui, file_, rev):
800 def debugdata(ui, file_, rev):
791 """dump the contents of a data file revision"""
801 """dump the contents of a data file revision"""
792 r = revlog.revlog(util.opener(os.getcwd(), audit=False), file_[:-2] + ".i")
802 r = revlog.revlog(util.opener(os.getcwd(), audit=False), file_[:-2] + ".i")
793 try:
803 try:
794 ui.write(r.revision(r.lookup(rev)))
804 ui.write(r.revision(r.lookup(rev)))
795 except KeyError:
805 except KeyError:
796 raise util.Abort(_('invalid revision identifier %s') % rev)
806 raise util.Abort(_('invalid revision identifier %s') % rev)
797
807
798 def debugdate(ui, date, range=None, **opts):
808 def debugdate(ui, date, range=None, **opts):
799 """parse and display a date"""
809 """parse and display a date"""
800 if opts["extended"]:
810 if opts["extended"]:
801 d = util.parsedate(date, util.extendeddateformats)
811 d = util.parsedate(date, util.extendeddateformats)
802 else:
812 else:
803 d = util.parsedate(date)
813 d = util.parsedate(date)
804 ui.write("internal: %s %s\n" % d)
814 ui.write("internal: %s %s\n" % d)
805 ui.write("standard: %s\n" % util.datestr(d))
815 ui.write("standard: %s\n" % util.datestr(d))
806 if range:
816 if range:
807 m = util.matchdate(range)
817 m = util.matchdate(range)
808 ui.write("match: %s\n" % m(d[0]))
818 ui.write("match: %s\n" % m(d[0]))
809
819
810 def debugindex(ui, file_):
820 def debugindex(ui, file_):
811 """dump the contents of an index file"""
821 """dump the contents of an index file"""
812 r = revlog.revlog(util.opener(os.getcwd(), audit=False), file_)
822 r = revlog.revlog(util.opener(os.getcwd(), audit=False), file_)
813 ui.write(" rev offset length base linkrev" +
823 ui.write(" rev offset length base linkrev" +
814 " nodeid p1 p2\n")
824 " nodeid p1 p2\n")
815 for i in r:
825 for i in r:
816 node = r.node(i)
826 node = r.node(i)
817 try:
827 try:
818 pp = r.parents(node)
828 pp = r.parents(node)
819 except:
829 except:
820 pp = [nullid, nullid]
830 pp = [nullid, nullid]
821 ui.write("% 6d % 9d % 7d % 6d % 7d %s %s %s\n" % (
831 ui.write("% 6d % 9d % 7d % 6d % 7d %s %s %s\n" % (
822 i, r.start(i), r.length(i), r.base(i), r.linkrev(node),
832 i, r.start(i), r.length(i), r.base(i), r.linkrev(node),
823 short(node), short(pp[0]), short(pp[1])))
833 short(node), short(pp[0]), short(pp[1])))
824
834
825 def debugindexdot(ui, file_):
835 def debugindexdot(ui, file_):
826 """dump an index DAG as a .dot file"""
836 """dump an index DAG as a .dot file"""
827 r = revlog.revlog(util.opener(os.getcwd(), audit=False), file_)
837 r = revlog.revlog(util.opener(os.getcwd(), audit=False), file_)
828 ui.write("digraph G {\n")
838 ui.write("digraph G {\n")
829 for i in r:
839 for i in r:
830 node = r.node(i)
840 node = r.node(i)
831 pp = r.parents(node)
841 pp = r.parents(node)
832 ui.write("\t%d -> %d\n" % (r.rev(pp[0]), i))
842 ui.write("\t%d -> %d\n" % (r.rev(pp[0]), i))
833 if pp[1] != nullid:
843 if pp[1] != nullid:
834 ui.write("\t%d -> %d\n" % (r.rev(pp[1]), i))
844 ui.write("\t%d -> %d\n" % (r.rev(pp[1]), i))
835 ui.write("}\n")
845 ui.write("}\n")
836
846
837 def debuginstall(ui):
847 def debuginstall(ui):
838 '''test Mercurial installation'''
848 '''test Mercurial installation'''
839
849
840 def writetemp(contents):
850 def writetemp(contents):
841 (fd, name) = tempfile.mkstemp(prefix="hg-debuginstall-")
851 (fd, name) = tempfile.mkstemp(prefix="hg-debuginstall-")
842 f = os.fdopen(fd, "wb")
852 f = os.fdopen(fd, "wb")
843 f.write(contents)
853 f.write(contents)
844 f.close()
854 f.close()
845 return name
855 return name
846
856
847 problems = 0
857 problems = 0
848
858
849 # encoding
859 # encoding
850 ui.status(_("Checking encoding (%s)...\n") % util._encoding)
860 ui.status(_("Checking encoding (%s)...\n") % util._encoding)
851 try:
861 try:
852 util.fromlocal("test")
862 util.fromlocal("test")
853 except util.Abort, inst:
863 except util.Abort, inst:
854 ui.write(" %s\n" % inst)
864 ui.write(" %s\n" % inst)
855 ui.write(_(" (check that your locale is properly set)\n"))
865 ui.write(_(" (check that your locale is properly set)\n"))
856 problems += 1
866 problems += 1
857
867
858 # compiled modules
868 # compiled modules
859 ui.status(_("Checking extensions...\n"))
869 ui.status(_("Checking extensions...\n"))
860 try:
870 try:
861 import bdiff, mpatch, base85
871 import bdiff, mpatch, base85
862 except Exception, inst:
872 except Exception, inst:
863 ui.write(" %s\n" % inst)
873 ui.write(" %s\n" % inst)
864 ui.write(_(" One or more extensions could not be found"))
874 ui.write(_(" One or more extensions could not be found"))
865 ui.write(_(" (check that you compiled the extensions)\n"))
875 ui.write(_(" (check that you compiled the extensions)\n"))
866 problems += 1
876 problems += 1
867
877
868 # templates
878 # templates
869 ui.status(_("Checking templates...\n"))
879 ui.status(_("Checking templates...\n"))
870 try:
880 try:
871 import templater
881 import templater
872 t = templater.templater(templater.templatepath("map-cmdline.default"))
882 t = templater.templater(templater.templatepath("map-cmdline.default"))
873 except Exception, inst:
883 except Exception, inst:
874 ui.write(" %s\n" % inst)
884 ui.write(" %s\n" % inst)
875 ui.write(_(" (templates seem to have been installed incorrectly)\n"))
885 ui.write(_(" (templates seem to have been installed incorrectly)\n"))
876 problems += 1
886 problems += 1
877
887
878 # patch
888 # patch
879 ui.status(_("Checking patch...\n"))
889 ui.status(_("Checking patch...\n"))
880 patchproblems = 0
890 patchproblems = 0
881 a = "1\n2\n3\n4\n"
891 a = "1\n2\n3\n4\n"
882 b = "1\n2\n3\ninsert\n4\n"
892 b = "1\n2\n3\ninsert\n4\n"
883 fa = writetemp(a)
893 fa = writetemp(a)
884 d = mdiff.unidiff(a, None, b, None, os.path.basename(fa),
894 d = mdiff.unidiff(a, None, b, None, os.path.basename(fa),
885 os.path.basename(fa))
895 os.path.basename(fa))
886 fd = writetemp(d)
896 fd = writetemp(d)
887
897
888 files = {}
898 files = {}
889 try:
899 try:
890 patch.patch(fd, ui, cwd=os.path.dirname(fa), files=files)
900 patch.patch(fd, ui, cwd=os.path.dirname(fa), files=files)
891 except util.Abort, e:
901 except util.Abort, e:
892 ui.write(_(" patch call failed:\n"))
902 ui.write(_(" patch call failed:\n"))
893 ui.write(" " + str(e) + "\n")
903 ui.write(" " + str(e) + "\n")
894 patchproblems += 1
904 patchproblems += 1
895 else:
905 else:
896 if list(files) != [os.path.basename(fa)]:
906 if list(files) != [os.path.basename(fa)]:
897 ui.write(_(" unexpected patch output!\n"))
907 ui.write(_(" unexpected patch output!\n"))
898 patchproblems += 1
908 patchproblems += 1
899 a = file(fa).read()
909 a = file(fa).read()
900 if a != b:
910 if a != b:
901 ui.write(_(" patch test failed!\n"))
911 ui.write(_(" patch test failed!\n"))
902 patchproblems += 1
912 patchproblems += 1
903
913
904 if patchproblems:
914 if patchproblems:
905 if ui.config('ui', 'patch'):
915 if ui.config('ui', 'patch'):
906 ui.write(_(" (Current patch tool may be incompatible with patch,"
916 ui.write(_(" (Current patch tool may be incompatible with patch,"
907 " or misconfigured. Please check your .hgrc file)\n"))
917 " or misconfigured. Please check your .hgrc file)\n"))
908 else:
918 else:
909 ui.write(_(" Internal patcher failure, please report this error"
919 ui.write(_(" Internal patcher failure, please report this error"
910 " to http://www.selenic.com/mercurial/bts\n"))
920 " to http://www.selenic.com/mercurial/bts\n"))
911 problems += patchproblems
921 problems += patchproblems
912
922
913 os.unlink(fa)
923 os.unlink(fa)
914 os.unlink(fd)
924 os.unlink(fd)
915
925
916 # editor
926 # editor
917 ui.status(_("Checking commit editor...\n"))
927 ui.status(_("Checking commit editor...\n"))
918 editor = ui.geteditor()
928 editor = ui.geteditor()
919 cmdpath = util.find_exe(editor) or util.find_exe(editor.split()[0])
929 cmdpath = util.find_exe(editor) or util.find_exe(editor.split()[0])
920 if not cmdpath:
930 if not cmdpath:
921 if editor == 'vi':
931 if editor == 'vi':
922 ui.write(_(" No commit editor set and can't find vi in PATH\n"))
932 ui.write(_(" No commit editor set and can't find vi in PATH\n"))
923 ui.write(_(" (specify a commit editor in your .hgrc file)\n"))
933 ui.write(_(" (specify a commit editor in your .hgrc file)\n"))
924 else:
934 else:
925 ui.write(_(" Can't find editor '%s' in PATH\n") % editor)
935 ui.write(_(" Can't find editor '%s' in PATH\n") % editor)
926 ui.write(_(" (specify a commit editor in your .hgrc file)\n"))
936 ui.write(_(" (specify a commit editor in your .hgrc file)\n"))
927 problems += 1
937 problems += 1
928
938
929 # check username
939 # check username
930 ui.status(_("Checking username...\n"))
940 ui.status(_("Checking username...\n"))
931 user = os.environ.get("HGUSER")
941 user = os.environ.get("HGUSER")
932 if user is None:
942 if user is None:
933 user = ui.config("ui", "username")
943 user = ui.config("ui", "username")
934 if user is None:
944 if user is None:
935 user = os.environ.get("EMAIL")
945 user = os.environ.get("EMAIL")
936 if not user:
946 if not user:
937 ui.warn(" ")
947 ui.warn(" ")
938 ui.username()
948 ui.username()
939 ui.write(_(" (specify a username in your .hgrc file)\n"))
949 ui.write(_(" (specify a username in your .hgrc file)\n"))
940
950
941 if not problems:
951 if not problems:
942 ui.status(_("No problems detected\n"))
952 ui.status(_("No problems detected\n"))
943 else:
953 else:
944 ui.write(_("%s problems detected,"
954 ui.write(_("%s problems detected,"
945 " please check your install!\n") % problems)
955 " please check your install!\n") % problems)
946
956
947 return problems
957 return problems
948
958
949 def debugrename(ui, repo, file1, *pats, **opts):
959 def debugrename(ui, repo, file1, *pats, **opts):
950 """dump rename information"""
960 """dump rename information"""
951
961
952 ctx = repo[opts.get('rev')]
962 ctx = repo[opts.get('rev')]
953 m = cmdutil.match(repo, (file1,) + pats, opts)
963 m = cmdutil.match(repo, (file1,) + pats, opts)
954 for abs in ctx.walk(m):
964 for abs in ctx.walk(m):
955 fctx = ctx[abs]
965 fctx = ctx[abs]
956 o = fctx.filelog().renamed(fctx.filenode())
966 o = fctx.filelog().renamed(fctx.filenode())
957 rel = m.rel(abs)
967 rel = m.rel(abs)
958 if o:
968 if o:
959 ui.write(_("%s renamed from %s:%s\n") % (rel, o[0], hex(o[1])))
969 ui.write(_("%s renamed from %s:%s\n") % (rel, o[0], hex(o[1])))
960 else:
970 else:
961 ui.write(_("%s not renamed\n") % rel)
971 ui.write(_("%s not renamed\n") % rel)
962
972
963 def debugwalk(ui, repo, *pats, **opts):
973 def debugwalk(ui, repo, *pats, **opts):
964 """show how files match on given patterns"""
974 """show how files match on given patterns"""
965 m = cmdutil.match(repo, pats, opts)
975 m = cmdutil.match(repo, pats, opts)
966 items = list(repo.walk(m))
976 items = list(repo.walk(m))
967 if not items:
977 if not items:
968 return
978 return
969 fmt = 'f %%-%ds %%-%ds %%s' % (
979 fmt = 'f %%-%ds %%-%ds %%s' % (
970 max([len(abs) for abs in items]),
980 max([len(abs) for abs in items]),
971 max([len(m.rel(abs)) for abs in items]))
981 max([len(m.rel(abs)) for abs in items]))
972 for abs in items:
982 for abs in items:
973 line = fmt % (abs, m.rel(abs), m.exact(abs) and 'exact' or '')
983 line = fmt % (abs, m.rel(abs), m.exact(abs) and 'exact' or '')
974 ui.write("%s\n" % line.rstrip())
984 ui.write("%s\n" % line.rstrip())
975
985
976 def diff(ui, repo, *pats, **opts):
986 def diff(ui, repo, *pats, **opts):
977 """diff repository (or selected files)
987 """diff repository (or selected files)
978
988
979 Show differences between revisions for the specified files.
989 Show differences between revisions for the specified files.
980
990
981 Differences between files are shown using the unified diff format.
991 Differences between files are shown using the unified diff format.
982
992
983 NOTE: diff may generate unexpected results for merges, as it will
993 NOTE: diff may generate unexpected results for merges, as it will
984 default to comparing against the working directory's first parent
994 default to comparing against the working directory's first parent
985 changeset if no revisions are specified.
995 changeset if no revisions are specified.
986
996
987 When two revision arguments are given, then changes are shown
997 When two revision arguments are given, then changes are shown
988 between those revisions. If only one revision is specified then
998 between those revisions. If only one revision is specified then
989 that revision is compared to the working directory, and, when no
999 that revision is compared to the working directory, and, when no
990 revisions are specified, the working directory files are compared
1000 revisions are specified, the working directory files are compared
991 to its parent.
1001 to its parent.
992
1002
993 Without the -a option, diff will avoid generating diffs of files
1003 Without the -a option, diff will avoid generating diffs of files
994 it detects as binary. With -a, diff will generate a diff anyway,
1004 it detects as binary. With -a, diff will generate a diff anyway,
995 probably with undesirable results.
1005 probably with undesirable results.
996 """
1006 """
997 node1, node2 = cmdutil.revpair(repo, opts.get('rev'))
1007 node1, node2 = cmdutil.revpair(repo, opts.get('rev'))
998
1008
999 m = cmdutil.match(repo, pats, opts)
1009 m = cmdutil.match(repo, pats, opts)
1000 patch.diff(repo, node1, node2, match=m, opts=patch.diffopts(ui, opts))
1010 patch.diff(repo, node1, node2, match=m, opts=patch.diffopts(ui, opts))
1001
1011
1002 def export(ui, repo, *changesets, **opts):
1012 def export(ui, repo, *changesets, **opts):
1003 """dump the header and diffs for one or more changesets
1013 """dump the header and diffs for one or more changesets
1004
1014
1005 Print the changeset header and diffs for one or more revisions.
1015 Print the changeset header and diffs for one or more revisions.
1006
1016
1007 The information shown in the changeset header is: author,
1017 The information shown in the changeset header is: author,
1008 changeset hash, parent(s) and commit comment.
1018 changeset hash, parent(s) and commit comment.
1009
1019
1010 NOTE: export may generate unexpected diff output for merge changesets,
1020 NOTE: export may generate unexpected diff output for merge changesets,
1011 as it will compare the merge changeset against its first parent only.
1021 as it will compare the merge changeset against its first parent only.
1012
1022
1013 Output may be to a file, in which case the name of the file is
1023 Output may be to a file, in which case the name of the file is
1014 given using a format string. The formatting rules are as follows:
1024 given using a format string. The formatting rules are as follows:
1015
1025
1016 %% literal "%" character
1026 %% literal "%" character
1017 %H changeset hash (40 bytes of hexadecimal)
1027 %H changeset hash (40 bytes of hexadecimal)
1018 %N number of patches being generated
1028 %N number of patches being generated
1019 %R changeset revision number
1029 %R changeset revision number
1020 %b basename of the exporting repository
1030 %b basename of the exporting repository
1021 %h short-form changeset hash (12 bytes of hexadecimal)
1031 %h short-form changeset hash (12 bytes of hexadecimal)
1022 %n zero-padded sequence number, starting at 1
1032 %n zero-padded sequence number, starting at 1
1023 %r zero-padded changeset revision number
1033 %r zero-padded changeset revision number
1024
1034
1025 Without the -a option, export will avoid generating diffs of files
1035 Without the -a option, export will avoid generating diffs of files
1026 it detects as binary. With -a, export will generate a diff anyway,
1036 it detects as binary. With -a, export will generate a diff anyway,
1027 probably with undesirable results.
1037 probably with undesirable results.
1028
1038
1029 With the --switch-parent option, the diff will be against the second
1039 With the --switch-parent option, the diff will be against the second
1030 parent. It can be useful to review a merge.
1040 parent. It can be useful to review a merge.
1031 """
1041 """
1032 if not changesets:
1042 if not changesets:
1033 raise util.Abort(_("export requires at least one changeset"))
1043 raise util.Abort(_("export requires at least one changeset"))
1034 revs = cmdutil.revrange(repo, changesets)
1044 revs = cmdutil.revrange(repo, changesets)
1035 if len(revs) > 1:
1045 if len(revs) > 1:
1036 ui.note(_('exporting patches:\n'))
1046 ui.note(_('exporting patches:\n'))
1037 else:
1047 else:
1038 ui.note(_('exporting patch:\n'))
1048 ui.note(_('exporting patch:\n'))
1039 patch.export(repo, revs, template=opts.get('output'),
1049 patch.export(repo, revs, template=opts.get('output'),
1040 switch_parent=opts.get('switch_parent'),
1050 switch_parent=opts.get('switch_parent'),
1041 opts=patch.diffopts(ui, opts))
1051 opts=patch.diffopts(ui, opts))
1042
1052
1043 def grep(ui, repo, pattern, *pats, **opts):
1053 def grep(ui, repo, pattern, *pats, **opts):
1044 """search for a pattern in specified files and revisions
1054 """search for a pattern in specified files and revisions
1045
1055
1046 Search revisions of files for a regular expression.
1056 Search revisions of files for a regular expression.
1047
1057
1048 This command behaves differently than Unix grep. It only accepts
1058 This command behaves differently than Unix grep. It only accepts
1049 Python/Perl regexps. It searches repository history, not the
1059 Python/Perl regexps. It searches repository history, not the
1050 working directory. It always prints the revision number in which
1060 working directory. It always prints the revision number in which
1051 a match appears.
1061 a match appears.
1052
1062
1053 By default, grep only prints output for the first revision of a
1063 By default, grep only prints output for the first revision of a
1054 file in which it finds a match. To get it to print every revision
1064 file in which it finds a match. To get it to print every revision
1055 that contains a change in match status ("-" for a match that
1065 that contains a change in match status ("-" for a match that
1056 becomes a non-match, or "+" for a non-match that becomes a match),
1066 becomes a non-match, or "+" for a non-match that becomes a match),
1057 use the --all flag.
1067 use the --all flag.
1058 """
1068 """
1059 reflags = 0
1069 reflags = 0
1060 if opts.get('ignore_case'):
1070 if opts.get('ignore_case'):
1061 reflags |= re.I
1071 reflags |= re.I
1062 try:
1072 try:
1063 regexp = re.compile(pattern, reflags)
1073 regexp = re.compile(pattern, reflags)
1064 except Exception, inst:
1074 except Exception, inst:
1065 ui.warn(_("grep: invalid match pattern: %s\n") % inst)
1075 ui.warn(_("grep: invalid match pattern: %s\n") % inst)
1066 return None
1076 return None
1067 sep, eol = ':', '\n'
1077 sep, eol = ':', '\n'
1068 if opts.get('print0'):
1078 if opts.get('print0'):
1069 sep = eol = '\0'
1079 sep = eol = '\0'
1070
1080
1071 fcache = {}
1081 fcache = {}
1072 def getfile(fn):
1082 def getfile(fn):
1073 if fn not in fcache:
1083 if fn not in fcache:
1074 fcache[fn] = repo.file(fn)
1084 fcache[fn] = repo.file(fn)
1075 return fcache[fn]
1085 return fcache[fn]
1076
1086
1077 def matchlines(body):
1087 def matchlines(body):
1078 begin = 0
1088 begin = 0
1079 linenum = 0
1089 linenum = 0
1080 while True:
1090 while True:
1081 match = regexp.search(body, begin)
1091 match = regexp.search(body, begin)
1082 if not match:
1092 if not match:
1083 break
1093 break
1084 mstart, mend = match.span()
1094 mstart, mend = match.span()
1085 linenum += body.count('\n', begin, mstart) + 1
1095 linenum += body.count('\n', begin, mstart) + 1
1086 lstart = body.rfind('\n', begin, mstart) + 1 or begin
1096 lstart = body.rfind('\n', begin, mstart) + 1 or begin
1087 lend = body.find('\n', mend)
1097 lend = body.find('\n', mend)
1088 yield linenum, mstart - lstart, mend - lstart, body[lstart:lend]
1098 yield linenum, mstart - lstart, mend - lstart, body[lstart:lend]
1089 begin = lend + 1
1099 begin = lend + 1
1090
1100
1091 class linestate(object):
1101 class linestate(object):
1092 def __init__(self, line, linenum, colstart, colend):
1102 def __init__(self, line, linenum, colstart, colend):
1093 self.line = line
1103 self.line = line
1094 self.linenum = linenum
1104 self.linenum = linenum
1095 self.colstart = colstart
1105 self.colstart = colstart
1096 self.colend = colend
1106 self.colend = colend
1097
1107
1098 def __hash__(self):
1108 def __hash__(self):
1099 return hash((self.linenum, self.line))
1109 return hash((self.linenum, self.line))
1100
1110
1101 def __eq__(self, other):
1111 def __eq__(self, other):
1102 return self.line == other.line
1112 return self.line == other.line
1103
1113
1104 matches = {}
1114 matches = {}
1105 copies = {}
1115 copies = {}
1106 def grepbody(fn, rev, body):
1116 def grepbody(fn, rev, body):
1107 matches[rev].setdefault(fn, [])
1117 matches[rev].setdefault(fn, [])
1108 m = matches[rev][fn]
1118 m = matches[rev][fn]
1109 for lnum, cstart, cend, line in matchlines(body):
1119 for lnum, cstart, cend, line in matchlines(body):
1110 s = linestate(line, lnum, cstart, cend)
1120 s = linestate(line, lnum, cstart, cend)
1111 m.append(s)
1121 m.append(s)
1112
1122
1113 def difflinestates(a, b):
1123 def difflinestates(a, b):
1114 sm = difflib.SequenceMatcher(None, a, b)
1124 sm = difflib.SequenceMatcher(None, a, b)
1115 for tag, alo, ahi, blo, bhi in sm.get_opcodes():
1125 for tag, alo, ahi, blo, bhi in sm.get_opcodes():
1116 if tag == 'insert':
1126 if tag == 'insert':
1117 for i in xrange(blo, bhi):
1127 for i in xrange(blo, bhi):
1118 yield ('+', b[i])
1128 yield ('+', b[i])
1119 elif tag == 'delete':
1129 elif tag == 'delete':
1120 for i in xrange(alo, ahi):
1130 for i in xrange(alo, ahi):
1121 yield ('-', a[i])
1131 yield ('-', a[i])
1122 elif tag == 'replace':
1132 elif tag == 'replace':
1123 for i in xrange(alo, ahi):
1133 for i in xrange(alo, ahi):
1124 yield ('-', a[i])
1134 yield ('-', a[i])
1125 for i in xrange(blo, bhi):
1135 for i in xrange(blo, bhi):
1126 yield ('+', b[i])
1136 yield ('+', b[i])
1127
1137
1128 prev = {}
1138 prev = {}
1129 def display(fn, rev, states, prevstates):
1139 def display(fn, rev, states, prevstates):
1130 datefunc = ui.quiet and util.shortdate or util.datestr
1140 datefunc = ui.quiet and util.shortdate or util.datestr
1131 found = False
1141 found = False
1132 filerevmatches = {}
1142 filerevmatches = {}
1133 r = prev.get(fn, -1)
1143 r = prev.get(fn, -1)
1134 if opts.get('all'):
1144 if opts.get('all'):
1135 iter = difflinestates(states, prevstates)
1145 iter = difflinestates(states, prevstates)
1136 else:
1146 else:
1137 iter = [('', l) for l in prevstates]
1147 iter = [('', l) for l in prevstates]
1138 for change, l in iter:
1148 for change, l in iter:
1139 cols = [fn, str(r)]
1149 cols = [fn, str(r)]
1140 if opts.get('line_number'):
1150 if opts.get('line_number'):
1141 cols.append(str(l.linenum))
1151 cols.append(str(l.linenum))
1142 if opts.get('all'):
1152 if opts.get('all'):
1143 cols.append(change)
1153 cols.append(change)
1144 if opts.get('user'):
1154 if opts.get('user'):
1145 cols.append(ui.shortuser(get(r)[1]))
1155 cols.append(ui.shortuser(get(r)[1]))
1146 if opts.get('date'):
1156 if opts.get('date'):
1147 cols.append(datefunc(get(r)[2]))
1157 cols.append(datefunc(get(r)[2]))
1148 if opts.get('files_with_matches'):
1158 if opts.get('files_with_matches'):
1149 c = (fn, r)
1159 c = (fn, r)
1150 if c in filerevmatches:
1160 if c in filerevmatches:
1151 continue
1161 continue
1152 filerevmatches[c] = 1
1162 filerevmatches[c] = 1
1153 else:
1163 else:
1154 cols.append(l.line)
1164 cols.append(l.line)
1155 ui.write(sep.join(cols), eol)
1165 ui.write(sep.join(cols), eol)
1156 found = True
1166 found = True
1157 return found
1167 return found
1158
1168
1159 fstate = {}
1169 fstate = {}
1160 skip = {}
1170 skip = {}
1161 get = util.cachefunc(lambda r: repo[r].changeset())
1171 get = util.cachefunc(lambda r: repo[r].changeset())
1162 changeiter, matchfn = cmdutil.walkchangerevs(ui, repo, pats, get, opts)
1172 changeiter, matchfn = cmdutil.walkchangerevs(ui, repo, pats, get, opts)
1163 found = False
1173 found = False
1164 follow = opts.get('follow')
1174 follow = opts.get('follow')
1165 for st, rev, fns in changeiter:
1175 for st, rev, fns in changeiter:
1166 if st == 'window':
1176 if st == 'window':
1167 matches.clear()
1177 matches.clear()
1168 elif st == 'add':
1178 elif st == 'add':
1169 ctx = repo[rev]
1179 ctx = repo[rev]
1170 matches[rev] = {}
1180 matches[rev] = {}
1171 for fn in fns:
1181 for fn in fns:
1172 if fn in skip:
1182 if fn in skip:
1173 continue
1183 continue
1174 try:
1184 try:
1175 grepbody(fn, rev, getfile(fn).read(ctx.filenode(fn)))
1185 grepbody(fn, rev, getfile(fn).read(ctx.filenode(fn)))
1176 fstate.setdefault(fn, [])
1186 fstate.setdefault(fn, [])
1177 if follow:
1187 if follow:
1178 copied = getfile(fn).renamed(ctx.filenode(fn))
1188 copied = getfile(fn).renamed(ctx.filenode(fn))
1179 if copied:
1189 if copied:
1180 copies.setdefault(rev, {})[fn] = copied[0]
1190 copies.setdefault(rev, {})[fn] = copied[0]
1181 except revlog.LookupError:
1191 except revlog.LookupError:
1182 pass
1192 pass
1183 elif st == 'iter':
1193 elif st == 'iter':
1184 for fn, m in util.sort(matches[rev].items()):
1194 for fn, m in util.sort(matches[rev].items()):
1185 copy = copies.get(rev, {}).get(fn)
1195 copy = copies.get(rev, {}).get(fn)
1186 if fn in skip:
1196 if fn in skip:
1187 if copy:
1197 if copy:
1188 skip[copy] = True
1198 skip[copy] = True
1189 continue
1199 continue
1190 if fn in prev or fstate[fn]:
1200 if fn in prev or fstate[fn]:
1191 r = display(fn, rev, m, fstate[fn])
1201 r = display(fn, rev, m, fstate[fn])
1192 found = found or r
1202 found = found or r
1193 if r and not opts.get('all'):
1203 if r and not opts.get('all'):
1194 skip[fn] = True
1204 skip[fn] = True
1195 if copy:
1205 if copy:
1196 skip[copy] = True
1206 skip[copy] = True
1197 fstate[fn] = m
1207 fstate[fn] = m
1198 if copy:
1208 if copy:
1199 fstate[copy] = m
1209 fstate[copy] = m
1200 prev[fn] = rev
1210 prev[fn] = rev
1201
1211
1202 for fn, state in util.sort(fstate.items()):
1212 for fn, state in util.sort(fstate.items()):
1203 if fn in skip:
1213 if fn in skip:
1204 continue
1214 continue
1205 if fn not in copies.get(prev[fn], {}):
1215 if fn not in copies.get(prev[fn], {}):
1206 found = display(fn, rev, {}, state) or found
1216 found = display(fn, rev, {}, state) or found
1207 return (not found and 1) or 0
1217 return (not found and 1) or 0
1208
1218
1209 def heads(ui, repo, *branchrevs, **opts):
1219 def heads(ui, repo, *branchrevs, **opts):
1210 """show current repository heads or show branch heads
1220 """show current repository heads or show branch heads
1211
1221
1212 With no arguments, show all repository head changesets.
1222 With no arguments, show all repository head changesets.
1213
1223
1214 If branch or revisions names are given this will show the heads of
1224 If branch or revisions names are given this will show the heads of
1215 the specified branches or the branches those revisions are tagged
1225 the specified branches or the branches those revisions are tagged
1216 with.
1226 with.
1217
1227
1218 Repository "heads" are changesets that don't have child
1228 Repository "heads" are changesets that don't have child
1219 changesets. They are where development generally takes place and
1229 changesets. They are where development generally takes place and
1220 are the usual targets for update and merge operations.
1230 are the usual targets for update and merge operations.
1221
1231
1222 Branch heads are changesets that have a given branch tag, but have
1232 Branch heads are changesets that have a given branch tag, but have
1223 no child changesets with that tag. They are usually where
1233 no child changesets with that tag. They are usually where
1224 development on the given branch takes place.
1234 development on the given branch takes place.
1225 """
1235 """
1226 if opts.get('rev'):
1236 if opts.get('rev'):
1227 start = repo.lookup(opts['rev'])
1237 start = repo.lookup(opts['rev'])
1228 else:
1238 else:
1229 start = None
1239 start = None
1230 if not branchrevs:
1240 if not branchrevs:
1231 # Assume we're looking repo-wide heads if no revs were specified.
1241 # Assume we're looking repo-wide heads if no revs were specified.
1232 heads = repo.heads(start)
1242 heads = repo.heads(start)
1233 else:
1243 else:
1234 heads = []
1244 heads = []
1235 visitedset = util.set()
1245 visitedset = util.set()
1236 for branchrev in branchrevs:
1246 for branchrev in branchrevs:
1237 branch = repo[branchrev].branch()
1247 branch = repo[branchrev].branch()
1238 if branch in visitedset:
1248 if branch in visitedset:
1239 continue
1249 continue
1240 visitedset.add(branch)
1250 visitedset.add(branch)
1241 bheads = repo.branchheads(branch, start)
1251 bheads = repo.branchheads(branch, start)
1242 if not bheads:
1252 if not bheads:
1243 if branch != branchrev:
1253 if branch != branchrev:
1244 ui.warn(_("no changes on branch %s containing %s are "
1254 ui.warn(_("no changes on branch %s containing %s are "
1245 "reachable from %s\n")
1255 "reachable from %s\n")
1246 % (branch, branchrev, opts.get('rev')))
1256 % (branch, branchrev, opts.get('rev')))
1247 else:
1257 else:
1248 ui.warn(_("no changes on branch %s are reachable from %s\n")
1258 ui.warn(_("no changes on branch %s are reachable from %s\n")
1249 % (branch, opts.get('rev')))
1259 % (branch, opts.get('rev')))
1250 heads.extend(bheads)
1260 heads.extend(bheads)
1251 if not heads:
1261 if not heads:
1252 return 1
1262 return 1
1253 displayer = cmdutil.show_changeset(ui, repo, opts)
1263 displayer = cmdutil.show_changeset(ui, repo, opts)
1254 for n in heads:
1264 for n in heads:
1255 displayer.show(changenode=n)
1265 displayer.show(changenode=n)
1256
1266
1257 def help_(ui, name=None, with_version=False):
1267 def help_(ui, name=None, with_version=False):
1258 """show help for a given topic or a help overview
1268 """show help for a given topic or a help overview
1259
1269
1260 With no arguments, print a list of commands and short help.
1270 With no arguments, print a list of commands and short help.
1261
1271
1262 Given a topic, extension, or command name, print help for that topic."""
1272 Given a topic, extension, or command name, print help for that topic."""
1263 option_lists = []
1273 option_lists = []
1264
1274
1265 def addglobalopts(aliases):
1275 def addglobalopts(aliases):
1266 if ui.verbose:
1276 if ui.verbose:
1267 option_lists.append((_("global options:"), globalopts))
1277 option_lists.append((_("global options:"), globalopts))
1268 if name == 'shortlist':
1278 if name == 'shortlist':
1269 option_lists.append((_('use "hg help" for the full list '
1279 option_lists.append((_('use "hg help" for the full list '
1270 'of commands'), ()))
1280 'of commands'), ()))
1271 else:
1281 else:
1272 if name == 'shortlist':
1282 if name == 'shortlist':
1273 msg = _('use "hg help" for the full list of commands '
1283 msg = _('use "hg help" for the full list of commands '
1274 'or "hg -v" for details')
1284 'or "hg -v" for details')
1275 elif aliases:
1285 elif aliases:
1276 msg = _('use "hg -v help%s" to show aliases and '
1286 msg = _('use "hg -v help%s" to show aliases and '
1277 'global options') % (name and " " + name or "")
1287 'global options') % (name and " " + name or "")
1278 else:
1288 else:
1279 msg = _('use "hg -v help %s" to show global options') % name
1289 msg = _('use "hg -v help %s" to show global options') % name
1280 option_lists.append((msg, ()))
1290 option_lists.append((msg, ()))
1281
1291
1282 def helpcmd(name):
1292 def helpcmd(name):
1283 if with_version:
1293 if with_version:
1284 version_(ui)
1294 version_(ui)
1285 ui.write('\n')
1295 ui.write('\n')
1286
1296
1287 try:
1297 try:
1288 aliases, i = cmdutil.findcmd(name, table, False)
1298 aliases, i = cmdutil.findcmd(name, table, False)
1289 except cmdutil.AmbiguousCommand, inst:
1299 except cmdutil.AmbiguousCommand, inst:
1290 select = lambda c: c.lstrip('^').startswith(inst.args[0])
1300 select = lambda c: c.lstrip('^').startswith(inst.args[0])
1291 helplist(_('list of commands:\n\n'), select)
1301 helplist(_('list of commands:\n\n'), select)
1292 return
1302 return
1293
1303
1294 # synopsis
1304 # synopsis
1295 ui.write("%s\n" % i[2])
1305 ui.write("%s\n" % i[2])
1296
1306
1297 # aliases
1307 # aliases
1298 if not ui.quiet and len(aliases) > 1:
1308 if not ui.quiet and len(aliases) > 1:
1299 ui.write(_("\naliases: %s\n") % ', '.join(aliases[1:]))
1309 ui.write(_("\naliases: %s\n") % ', '.join(aliases[1:]))
1300
1310
1301 # description
1311 # description
1302 doc = gettext(i[0].__doc__)
1312 doc = gettext(i[0].__doc__)
1303 if not doc:
1313 if not doc:
1304 doc = _("(No help text available)")
1314 doc = _("(No help text available)")
1305 if ui.quiet:
1315 if ui.quiet:
1306 doc = doc.splitlines(0)[0]
1316 doc = doc.splitlines(0)[0]
1307 ui.write("\n%s\n" % doc.rstrip())
1317 ui.write("\n%s\n" % doc.rstrip())
1308
1318
1309 if not ui.quiet:
1319 if not ui.quiet:
1310 # options
1320 # options
1311 if i[1]:
1321 if i[1]:
1312 option_lists.append((_("options:\n"), i[1]))
1322 option_lists.append((_("options:\n"), i[1]))
1313
1323
1314 addglobalopts(False)
1324 addglobalopts(False)
1315
1325
1316 def helplist(header, select=None):
1326 def helplist(header, select=None):
1317 h = {}
1327 h = {}
1318 cmds = {}
1328 cmds = {}
1319 for c, e in table.items():
1329 for c, e in table.items():
1320 f = c.split("|", 1)[0]
1330 f = c.split("|", 1)[0]
1321 if select and not select(f):
1331 if select and not select(f):
1322 continue
1332 continue
1323 if (not select and name != 'shortlist' and
1333 if (not select and name != 'shortlist' and
1324 e[0].__module__ != __name__):
1334 e[0].__module__ != __name__):
1325 continue
1335 continue
1326 if name == "shortlist" and not f.startswith("^"):
1336 if name == "shortlist" and not f.startswith("^"):
1327 continue
1337 continue
1328 f = f.lstrip("^")
1338 f = f.lstrip("^")
1329 if not ui.debugflag and f.startswith("debug"):
1339 if not ui.debugflag and f.startswith("debug"):
1330 continue
1340 continue
1331 doc = gettext(e[0].__doc__)
1341 doc = gettext(e[0].__doc__)
1332 if not doc:
1342 if not doc:
1333 doc = _("(No help text available)")
1343 doc = _("(No help text available)")
1334 h[f] = doc.splitlines(0)[0].rstrip()
1344 h[f] = doc.splitlines(0)[0].rstrip()
1335 cmds[f] = c.lstrip("^")
1345 cmds[f] = c.lstrip("^")
1336
1346
1337 if not h:
1347 if not h:
1338 ui.status(_('no commands defined\n'))
1348 ui.status(_('no commands defined\n'))
1339 return
1349 return
1340
1350
1341 ui.status(header)
1351 ui.status(header)
1342 fns = util.sort(h)
1352 fns = util.sort(h)
1343 m = max(map(len, fns))
1353 m = max(map(len, fns))
1344 for f in fns:
1354 for f in fns:
1345 if ui.verbose:
1355 if ui.verbose:
1346 commands = cmds[f].replace("|",", ")
1356 commands = cmds[f].replace("|",", ")
1347 ui.write(" %s:\n %s\n"%(commands, h[f]))
1357 ui.write(" %s:\n %s\n"%(commands, h[f]))
1348 else:
1358 else:
1349 ui.write(' %-*s %s\n' % (m, f, h[f]))
1359 ui.write(' %-*s %s\n' % (m, f, h[f]))
1350
1360
1351 exts = list(extensions.extensions())
1361 exts = list(extensions.extensions())
1352 if exts and name != 'shortlist':
1362 if exts and name != 'shortlist':
1353 ui.write(_('\nenabled extensions:\n\n'))
1363 ui.write(_('\nenabled extensions:\n\n'))
1354 maxlength = 0
1364 maxlength = 0
1355 exthelps = []
1365 exthelps = []
1356 for ename, ext in exts:
1366 for ename, ext in exts:
1357 doc = (ext.__doc__ or _('(no help text available)'))
1367 doc = (ext.__doc__ or _('(no help text available)'))
1358 ename = ename.split('.')[-1]
1368 ename = ename.split('.')[-1]
1359 maxlength = max(len(ename), maxlength)
1369 maxlength = max(len(ename), maxlength)
1360 exthelps.append((ename, doc.splitlines(0)[0].strip()))
1370 exthelps.append((ename, doc.splitlines(0)[0].strip()))
1361 for ename, text in exthelps:
1371 for ename, text in exthelps:
1362 ui.write(_(' %s %s\n') % (ename.ljust(maxlength), text))
1372 ui.write(_(' %s %s\n') % (ename.ljust(maxlength), text))
1363
1373
1364 if not ui.quiet:
1374 if not ui.quiet:
1365 addglobalopts(True)
1375 addglobalopts(True)
1366
1376
1367 def helptopic(name):
1377 def helptopic(name):
1368 for names, header, doc in help.helptable:
1378 for names, header, doc in help.helptable:
1369 if name in names:
1379 if name in names:
1370 break
1380 break
1371 else:
1381 else:
1372 raise cmdutil.UnknownCommand(name)
1382 raise cmdutil.UnknownCommand(name)
1373
1383
1374 # description
1384 # description
1375 if not doc:
1385 if not doc:
1376 doc = _("(No help text available)")
1386 doc = _("(No help text available)")
1377 if callable(doc):
1387 if callable(doc):
1378 doc = doc()
1388 doc = doc()
1379
1389
1380 ui.write("%s\n" % header)
1390 ui.write("%s\n" % header)
1381 ui.write("%s\n" % doc.rstrip())
1391 ui.write("%s\n" % doc.rstrip())
1382
1392
1383 def helpext(name):
1393 def helpext(name):
1384 try:
1394 try:
1385 mod = extensions.find(name)
1395 mod = extensions.find(name)
1386 except KeyError:
1396 except KeyError:
1387 raise cmdutil.UnknownCommand(name)
1397 raise cmdutil.UnknownCommand(name)
1388
1398
1389 doc = gettext(mod.__doc__) or _('No help text available')
1399 doc = gettext(mod.__doc__) or _('No help text available')
1390 doc = doc.splitlines(0)
1400 doc = doc.splitlines(0)
1391 ui.write(_('%s extension - %s\n') % (name.split('.')[-1], doc[0]))
1401 ui.write(_('%s extension - %s\n') % (name.split('.')[-1], doc[0]))
1392 for d in doc[1:]:
1402 for d in doc[1:]:
1393 ui.write(d, '\n')
1403 ui.write(d, '\n')
1394
1404
1395 ui.status('\n')
1405 ui.status('\n')
1396
1406
1397 try:
1407 try:
1398 ct = mod.cmdtable
1408 ct = mod.cmdtable
1399 except AttributeError:
1409 except AttributeError:
1400 ct = {}
1410 ct = {}
1401
1411
1402 modcmds = dict.fromkeys([c.split('|', 1)[0] for c in ct])
1412 modcmds = dict.fromkeys([c.split('|', 1)[0] for c in ct])
1403 helplist(_('list of commands:\n\n'), modcmds.has_key)
1413 helplist(_('list of commands:\n\n'), modcmds.has_key)
1404
1414
1405 if name and name != 'shortlist':
1415 if name and name != 'shortlist':
1406 i = None
1416 i = None
1407 for f in (helpcmd, helptopic, helpext):
1417 for f in (helpcmd, helptopic, helpext):
1408 try:
1418 try:
1409 f(name)
1419 f(name)
1410 i = None
1420 i = None
1411 break
1421 break
1412 except cmdutil.UnknownCommand, inst:
1422 except cmdutil.UnknownCommand, inst:
1413 i = inst
1423 i = inst
1414 if i:
1424 if i:
1415 raise i
1425 raise i
1416
1426
1417 else:
1427 else:
1418 # program name
1428 # program name
1419 if ui.verbose or with_version:
1429 if ui.verbose or with_version:
1420 version_(ui)
1430 version_(ui)
1421 else:
1431 else:
1422 ui.status(_("Mercurial Distributed SCM\n"))
1432 ui.status(_("Mercurial Distributed SCM\n"))
1423 ui.status('\n')
1433 ui.status('\n')
1424
1434
1425 # list of commands
1435 # list of commands
1426 if name == "shortlist":
1436 if name == "shortlist":
1427 header = _('basic commands:\n\n')
1437 header = _('basic commands:\n\n')
1428 else:
1438 else:
1429 header = _('list of commands:\n\n')
1439 header = _('list of commands:\n\n')
1430
1440
1431 helplist(header)
1441 helplist(header)
1432
1442
1433 # list all option lists
1443 # list all option lists
1434 opt_output = []
1444 opt_output = []
1435 for title, options in option_lists:
1445 for title, options in option_lists:
1436 opt_output.append(("\n%s" % title, None))
1446 opt_output.append(("\n%s" % title, None))
1437 for shortopt, longopt, default, desc in options:
1447 for shortopt, longopt, default, desc in options:
1438 if "DEPRECATED" in desc and not ui.verbose: continue
1448 if "DEPRECATED" in desc and not ui.verbose: continue
1439 opt_output.append(("%2s%s" % (shortopt and "-%s" % shortopt,
1449 opt_output.append(("%2s%s" % (shortopt and "-%s" % shortopt,
1440 longopt and " --%s" % longopt),
1450 longopt and " --%s" % longopt),
1441 "%s%s" % (desc,
1451 "%s%s" % (desc,
1442 default
1452 default
1443 and _(" (default: %s)") % default
1453 and _(" (default: %s)") % default
1444 or "")))
1454 or "")))
1445
1455
1446 if not name:
1456 if not name:
1447 ui.write(_("\nadditional help topics:\n\n"))
1457 ui.write(_("\nadditional help topics:\n\n"))
1448 topics = []
1458 topics = []
1449 for names, header, doc in help.helptable:
1459 for names, header, doc in help.helptable:
1450 names = [(-len(name), name) for name in names]
1460 names = [(-len(name), name) for name in names]
1451 names.sort()
1461 names.sort()
1452 topics.append((names[0][1], header))
1462 topics.append((names[0][1], header))
1453 topics_len = max([len(s[0]) for s in topics])
1463 topics_len = max([len(s[0]) for s in topics])
1454 for t, desc in topics:
1464 for t, desc in topics:
1455 ui.write(" %-*s %s\n" % (topics_len, t, desc))
1465 ui.write(" %-*s %s\n" % (topics_len, t, desc))
1456
1466
1457 if opt_output:
1467 if opt_output:
1458 opts_len = max([len(line[0]) for line in opt_output if line[1]] or [0])
1468 opts_len = max([len(line[0]) for line in opt_output if line[1]] or [0])
1459 for first, second in opt_output:
1469 for first, second in opt_output:
1460 if second:
1470 if second:
1461 ui.write(" %-*s %s\n" % (opts_len, first, second))
1471 ui.write(" %-*s %s\n" % (opts_len, first, second))
1462 else:
1472 else:
1463 ui.write("%s\n" % first)
1473 ui.write("%s\n" % first)
1464
1474
1465 def identify(ui, repo, source=None,
1475 def identify(ui, repo, source=None,
1466 rev=None, num=None, id=None, branch=None, tags=None):
1476 rev=None, num=None, id=None, branch=None, tags=None):
1467 """identify the working copy or specified revision
1477 """identify the working copy or specified revision
1468
1478
1469 With no revision, print a summary of the current state of the repo.
1479 With no revision, print a summary of the current state of the repo.
1470
1480
1471 With a path, do a lookup in another repository.
1481 With a path, do a lookup in another repository.
1472
1482
1473 This summary identifies the repository state using one or two parent
1483 This summary identifies the repository state using one or two parent
1474 hash identifiers, followed by a "+" if there are uncommitted changes
1484 hash identifiers, followed by a "+" if there are uncommitted changes
1475 in the working directory, a list of tags for this revision and a branch
1485 in the working directory, a list of tags for this revision and a branch
1476 name for non-default branches.
1486 name for non-default branches.
1477 """
1487 """
1478
1488
1479 if not repo and not source:
1489 if not repo and not source:
1480 raise util.Abort(_("There is no Mercurial repository here "
1490 raise util.Abort(_("There is no Mercurial repository here "
1481 "(.hg not found)"))
1491 "(.hg not found)"))
1482
1492
1483 hexfunc = ui.debugflag and hex or short
1493 hexfunc = ui.debugflag and hex or short
1484 default = not (num or id or branch or tags)
1494 default = not (num or id or branch or tags)
1485 output = []
1495 output = []
1486
1496
1487 if source:
1497 if source:
1488 source, revs, checkout = hg.parseurl(ui.expandpath(source), [])
1498 source, revs, checkout = hg.parseurl(ui.expandpath(source), [])
1489 srepo = hg.repository(ui, source)
1499 srepo = hg.repository(ui, source)
1490 if not rev and revs:
1500 if not rev and revs:
1491 rev = revs[0]
1501 rev = revs[0]
1492 if not rev:
1502 if not rev:
1493 rev = "tip"
1503 rev = "tip"
1494 if num or branch or tags:
1504 if num or branch or tags:
1495 raise util.Abort(
1505 raise util.Abort(
1496 "can't query remote revision number, branch, or tags")
1506 "can't query remote revision number, branch, or tags")
1497 output = [hexfunc(srepo.lookup(rev))]
1507 output = [hexfunc(srepo.lookup(rev))]
1498 elif not rev:
1508 elif not rev:
1499 ctx = repo[None]
1509 ctx = repo[None]
1500 parents = ctx.parents()
1510 parents = ctx.parents()
1501 changed = False
1511 changed = False
1502 if default or id or num:
1512 if default or id or num:
1503 changed = ctx.files() + ctx.deleted()
1513 changed = ctx.files() + ctx.deleted()
1504 if default or id:
1514 if default or id:
1505 output = ["%s%s" % ('+'.join([hexfunc(p.node()) for p in parents]),
1515 output = ["%s%s" % ('+'.join([hexfunc(p.node()) for p in parents]),
1506 (changed) and "+" or "")]
1516 (changed) and "+" or "")]
1507 if num:
1517 if num:
1508 output.append("%s%s" % ('+'.join([str(p.rev()) for p in parents]),
1518 output.append("%s%s" % ('+'.join([str(p.rev()) for p in parents]),
1509 (changed) and "+" or ""))
1519 (changed) and "+" or ""))
1510 else:
1520 else:
1511 ctx = repo[rev]
1521 ctx = repo[rev]
1512 if default or id:
1522 if default or id:
1513 output = [hexfunc(ctx.node())]
1523 output = [hexfunc(ctx.node())]
1514 if num:
1524 if num:
1515 output.append(str(ctx.rev()))
1525 output.append(str(ctx.rev()))
1516
1526
1517 if not source and default and not ui.quiet:
1527 if not source and default and not ui.quiet:
1518 b = util.tolocal(ctx.branch())
1528 b = util.tolocal(ctx.branch())
1519 if b != 'default':
1529 if b != 'default':
1520 output.append("(%s)" % b)
1530 output.append("(%s)" % b)
1521
1531
1522 # multiple tags for a single parent separated by '/'
1532 # multiple tags for a single parent separated by '/'
1523 t = "/".join(ctx.tags())
1533 t = "/".join(ctx.tags())
1524 if t:
1534 if t:
1525 output.append(t)
1535 output.append(t)
1526
1536
1527 if branch:
1537 if branch:
1528 output.append(util.tolocal(ctx.branch()))
1538 output.append(util.tolocal(ctx.branch()))
1529
1539
1530 if tags:
1540 if tags:
1531 output.extend(ctx.tags())
1541 output.extend(ctx.tags())
1532
1542
1533 ui.write("%s\n" % ' '.join(output))
1543 ui.write("%s\n" % ' '.join(output))
1534
1544
1535 def import_(ui, repo, patch1, *patches, **opts):
1545 def import_(ui, repo, patch1, *patches, **opts):
1536 """import an ordered set of patches
1546 """import an ordered set of patches
1537
1547
1538 Import a list of patches and commit them individually.
1548 Import a list of patches and commit them individually.
1539
1549
1540 If there are outstanding changes in the working directory, import
1550 If there are outstanding changes in the working directory, import
1541 will abort unless given the -f flag.
1551 will abort unless given the -f flag.
1542
1552
1543 You can import a patch straight from a mail message. Even patches
1553 You can import a patch straight from a mail message. Even patches
1544 as attachments work (body part must be type text/plain or
1554 as attachments work (body part must be type text/plain or
1545 text/x-patch to be used). From and Subject headers of email
1555 text/x-patch to be used). From and Subject headers of email
1546 message are used as default committer and commit message. All
1556 message are used as default committer and commit message. All
1547 text/plain body parts before first diff are added to commit
1557 text/plain body parts before first diff are added to commit
1548 message.
1558 message.
1549
1559
1550 If the imported patch was generated by hg export, user and description
1560 If the imported patch was generated by hg export, user and description
1551 from patch override values from message headers and body. Values
1561 from patch override values from message headers and body. Values
1552 given on command line with -m and -u override these.
1562 given on command line with -m and -u override these.
1553
1563
1554 If --exact is specified, import will set the working directory
1564 If --exact is specified, import will set the working directory
1555 to the parent of each patch before applying it, and will abort
1565 to the parent of each patch before applying it, and will abort
1556 if the resulting changeset has a different ID than the one
1566 if the resulting changeset has a different ID than the one
1557 recorded in the patch. This may happen due to character set
1567 recorded in the patch. This may happen due to character set
1558 problems or other deficiencies in the text patch format.
1568 problems or other deficiencies in the text patch format.
1559
1569
1560 To read a patch from standard input, use patch name "-".
1570 To read a patch from standard input, use patch name "-".
1561 See 'hg help dates' for a list of formats valid for -d/--date.
1571 See 'hg help dates' for a list of formats valid for -d/--date.
1562 """
1572 """
1563 patches = (patch1,) + patches
1573 patches = (patch1,) + patches
1564
1574
1565 date = opts.get('date')
1575 date = opts.get('date')
1566 if date:
1576 if date:
1567 opts['date'] = util.parsedate(date)
1577 opts['date'] = util.parsedate(date)
1568
1578
1569 if opts.get('exact') or not opts.get('force'):
1579 if opts.get('exact') or not opts.get('force'):
1570 cmdutil.bail_if_changed(repo)
1580 cmdutil.bail_if_changed(repo)
1571
1581
1572 d = opts["base"]
1582 d = opts["base"]
1573 strip = opts["strip"]
1583 strip = opts["strip"]
1574 wlock = lock = None
1584 wlock = lock = None
1575 try:
1585 try:
1576 wlock = repo.wlock()
1586 wlock = repo.wlock()
1577 lock = repo.lock()
1587 lock = repo.lock()
1578 for p in patches:
1588 for p in patches:
1579 pf = os.path.join(d, p)
1589 pf = os.path.join(d, p)
1580
1590
1581 if pf == '-':
1591 if pf == '-':
1582 ui.status(_("applying patch from stdin\n"))
1592 ui.status(_("applying patch from stdin\n"))
1583 data = patch.extract(ui, sys.stdin)
1593 data = patch.extract(ui, sys.stdin)
1584 else:
1594 else:
1585 ui.status(_("applying %s\n") % p)
1595 ui.status(_("applying %s\n") % p)
1586 if os.path.exists(pf):
1596 if os.path.exists(pf):
1587 data = patch.extract(ui, file(pf, 'rb'))
1597 data = patch.extract(ui, file(pf, 'rb'))
1588 else:
1598 else:
1589 data = patch.extract(ui, urllib.urlopen(pf))
1599 data = patch.extract(ui, urllib.urlopen(pf))
1590 tmpname, message, user, date, branch, nodeid, p1, p2 = data
1600 tmpname, message, user, date, branch, nodeid, p1, p2 = data
1591
1601
1592 if tmpname is None:
1602 if tmpname is None:
1593 raise util.Abort(_('no diffs found'))
1603 raise util.Abort(_('no diffs found'))
1594
1604
1595 try:
1605 try:
1596 cmdline_message = cmdutil.logmessage(opts)
1606 cmdline_message = cmdutil.logmessage(opts)
1597 if cmdline_message:
1607 if cmdline_message:
1598 # pickup the cmdline msg
1608 # pickup the cmdline msg
1599 message = cmdline_message
1609 message = cmdline_message
1600 elif message:
1610 elif message:
1601 # pickup the patch msg
1611 # pickup the patch msg
1602 message = message.strip()
1612 message = message.strip()
1603 else:
1613 else:
1604 # launch the editor
1614 # launch the editor
1605 message = None
1615 message = None
1606 ui.debug(_('message:\n%s\n') % message)
1616 ui.debug(_('message:\n%s\n') % message)
1607
1617
1608 wp = repo.parents()
1618 wp = repo.parents()
1609 if opts.get('exact'):
1619 if opts.get('exact'):
1610 if not nodeid or not p1:
1620 if not nodeid or not p1:
1611 raise util.Abort(_('not a mercurial patch'))
1621 raise util.Abort(_('not a mercurial patch'))
1612 p1 = repo.lookup(p1)
1622 p1 = repo.lookup(p1)
1613 p2 = repo.lookup(p2 or hex(nullid))
1623 p2 = repo.lookup(p2 or hex(nullid))
1614
1624
1615 if p1 != wp[0].node():
1625 if p1 != wp[0].node():
1616 hg.clean(repo, p1)
1626 hg.clean(repo, p1)
1617 repo.dirstate.setparents(p1, p2)
1627 repo.dirstate.setparents(p1, p2)
1618 elif p2:
1628 elif p2:
1619 try:
1629 try:
1620 p1 = repo.lookup(p1)
1630 p1 = repo.lookup(p1)
1621 p2 = repo.lookup(p2)
1631 p2 = repo.lookup(p2)
1622 if p1 == wp[0].node():
1632 if p1 == wp[0].node():
1623 repo.dirstate.setparents(p1, p2)
1633 repo.dirstate.setparents(p1, p2)
1624 except RepoError:
1634 except RepoError:
1625 pass
1635 pass
1626 if opts.get('exact') or opts.get('import_branch'):
1636 if opts.get('exact') or opts.get('import_branch'):
1627 repo.dirstate.setbranch(branch or 'default')
1637 repo.dirstate.setbranch(branch or 'default')
1628
1638
1629 files = {}
1639 files = {}
1630 try:
1640 try:
1631 fuzz = patch.patch(tmpname, ui, strip=strip, cwd=repo.root,
1641 fuzz = patch.patch(tmpname, ui, strip=strip, cwd=repo.root,
1632 files=files)
1642 files=files)
1633 finally:
1643 finally:
1634 files = patch.updatedir(ui, repo, files)
1644 files = patch.updatedir(ui, repo, files)
1635 if not opts.get('no_commit'):
1645 if not opts.get('no_commit'):
1636 n = repo.commit(files, message, opts.get('user') or user,
1646 n = repo.commit(files, message, opts.get('user') or user,
1637 opts.get('date') or date)
1647 opts.get('date') or date)
1638 if opts.get('exact'):
1648 if opts.get('exact'):
1639 if hex(n) != nodeid:
1649 if hex(n) != nodeid:
1640 repo.rollback()
1650 repo.rollback()
1641 raise util.Abort(_('patch is damaged'
1651 raise util.Abort(_('patch is damaged'
1642 ' or loses information'))
1652 ' or loses information'))
1643 # Force a dirstate write so that the next transaction
1653 # Force a dirstate write so that the next transaction
1644 # backups an up-do-date file.
1654 # backups an up-do-date file.
1645 repo.dirstate.write()
1655 repo.dirstate.write()
1646 finally:
1656 finally:
1647 os.unlink(tmpname)
1657 os.unlink(tmpname)
1648 finally:
1658 finally:
1649 del lock, wlock
1659 del lock, wlock
1650
1660
1651 def incoming(ui, repo, source="default", **opts):
1661 def incoming(ui, repo, source="default", **opts):
1652 """show new changesets found in source
1662 """show new changesets found in source
1653
1663
1654 Show new changesets found in the specified path/URL or the default
1664 Show new changesets found in the specified path/URL or the default
1655 pull location. These are the changesets that would be pulled if a pull
1665 pull location. These are the changesets that would be pulled if a pull
1656 was requested.
1666 was requested.
1657
1667
1658 For remote repository, using --bundle avoids downloading the changesets
1668 For remote repository, using --bundle avoids downloading the changesets
1659 twice if the incoming is followed by a pull.
1669 twice if the incoming is followed by a pull.
1660
1670
1661 See pull for valid source format details.
1671 See pull for valid source format details.
1662 """
1672 """
1663 limit = cmdutil.loglimit(opts)
1673 limit = cmdutil.loglimit(opts)
1664 source, revs, checkout = hg.parseurl(ui.expandpath(source), opts.get('rev'))
1674 source, revs, checkout = hg.parseurl(ui.expandpath(source), opts.get('rev'))
1665 cmdutil.setremoteconfig(ui, opts)
1675 cmdutil.setremoteconfig(ui, opts)
1666
1676
1667 other = hg.repository(ui, source)
1677 other = hg.repository(ui, source)
1668 ui.status(_('comparing with %s\n') % util.hidepassword(source))
1678 ui.status(_('comparing with %s\n') % util.hidepassword(source))
1669 if revs:
1679 if revs:
1670 revs = [other.lookup(rev) for rev in revs]
1680 revs = [other.lookup(rev) for rev in revs]
1671 incoming = repo.findincoming(other, heads=revs, force=opts["force"])
1681 incoming = repo.findincoming(other, heads=revs, force=opts["force"])
1672 if not incoming:
1682 if not incoming:
1673 try:
1683 try:
1674 os.unlink(opts["bundle"])
1684 os.unlink(opts["bundle"])
1675 except:
1685 except:
1676 pass
1686 pass
1677 ui.status(_("no changes found\n"))
1687 ui.status(_("no changes found\n"))
1678 return 1
1688 return 1
1679
1689
1680 cleanup = None
1690 cleanup = None
1681 try:
1691 try:
1682 fname = opts["bundle"]
1692 fname = opts["bundle"]
1683 if fname or not other.local():
1693 if fname or not other.local():
1684 # create a bundle (uncompressed if other repo is not local)
1694 # create a bundle (uncompressed if other repo is not local)
1685 if revs is None:
1695 if revs is None:
1686 cg = other.changegroup(incoming, "incoming")
1696 cg = other.changegroup(incoming, "incoming")
1687 else:
1697 else:
1688 cg = other.changegroupsubset(incoming, revs, 'incoming')
1698 cg = other.changegroupsubset(incoming, revs, 'incoming')
1689 bundletype = other.local() and "HG10BZ" or "HG10UN"
1699 bundletype = other.local() and "HG10BZ" or "HG10UN"
1690 fname = cleanup = changegroup.writebundle(cg, fname, bundletype)
1700 fname = cleanup = changegroup.writebundle(cg, fname, bundletype)
1691 # keep written bundle?
1701 # keep written bundle?
1692 if opts["bundle"]:
1702 if opts["bundle"]:
1693 cleanup = None
1703 cleanup = None
1694 if not other.local():
1704 if not other.local():
1695 # use the created uncompressed bundlerepo
1705 # use the created uncompressed bundlerepo
1696 other = bundlerepo.bundlerepository(ui, repo.root, fname)
1706 other = bundlerepo.bundlerepository(ui, repo.root, fname)
1697
1707
1698 o = other.changelog.nodesbetween(incoming, revs)[0]
1708 o = other.changelog.nodesbetween(incoming, revs)[0]
1699 if opts.get('newest_first'):
1709 if opts.get('newest_first'):
1700 o.reverse()
1710 o.reverse()
1701 displayer = cmdutil.show_changeset(ui, other, opts)
1711 displayer = cmdutil.show_changeset(ui, other, opts)
1702 count = 0
1712 count = 0
1703 for n in o:
1713 for n in o:
1704 if count >= limit:
1714 if count >= limit:
1705 break
1715 break
1706 parents = [p for p in other.changelog.parents(n) if p != nullid]
1716 parents = [p for p in other.changelog.parents(n) if p != nullid]
1707 if opts.get('no_merges') and len(parents) == 2:
1717 if opts.get('no_merges') and len(parents) == 2:
1708 continue
1718 continue
1709 count += 1
1719 count += 1
1710 displayer.show(changenode=n)
1720 displayer.show(changenode=n)
1711 finally:
1721 finally:
1712 if hasattr(other, 'close'):
1722 if hasattr(other, 'close'):
1713 other.close()
1723 other.close()
1714 if cleanup:
1724 if cleanup:
1715 os.unlink(cleanup)
1725 os.unlink(cleanup)
1716
1726
1717 def init(ui, dest=".", **opts):
1727 def init(ui, dest=".", **opts):
1718 """create a new repository in the given directory
1728 """create a new repository in the given directory
1719
1729
1720 Initialize a new repository in the given directory. If the given
1730 Initialize a new repository in the given directory. If the given
1721 directory does not exist, it is created.
1731 directory does not exist, it is created.
1722
1732
1723 If no directory is given, the current directory is used.
1733 If no directory is given, the current directory is used.
1724
1734
1725 It is possible to specify an ssh:// URL as the destination.
1735 It is possible to specify an ssh:// URL as the destination.
1726 Look at the help text for the pull command for important details
1736 Look at the help text for the pull command for important details
1727 about ssh:// URLs.
1737 about ssh:// URLs.
1728 """
1738 """
1729 cmdutil.setremoteconfig(ui, opts)
1739 cmdutil.setremoteconfig(ui, opts)
1730 hg.repository(ui, dest, create=1)
1740 hg.repository(ui, dest, create=1)
1731
1741
1732 def locate(ui, repo, *pats, **opts):
1742 def locate(ui, repo, *pats, **opts):
1733 """locate files matching specific patterns
1743 """locate files matching specific patterns
1734
1744
1735 Print all files under Mercurial control whose names match the
1745 Print all files under Mercurial control whose names match the
1736 given patterns.
1746 given patterns.
1737
1747
1738 This command searches the entire repository by default. To search
1748 This command searches the entire repository by default. To search
1739 just the current directory and its subdirectories, use
1749 just the current directory and its subdirectories, use
1740 "--include .".
1750 "--include .".
1741
1751
1742 If no patterns are given to match, this command prints all file
1752 If no patterns are given to match, this command prints all file
1743 names.
1753 names.
1744
1754
1745 If you want to feed the output of this command into the "xargs"
1755 If you want to feed the output of this command into the "xargs"
1746 command, use the "-0" option to both this command and "xargs".
1756 command, use the "-0" option to both this command and "xargs".
1747 This will avoid the problem of "xargs" treating single filenames
1757 This will avoid the problem of "xargs" treating single filenames
1748 that contain white space as multiple filenames.
1758 that contain white space as multiple filenames.
1749 """
1759 """
1750 end = opts.get('print0') and '\0' or '\n'
1760 end = opts.get('print0') and '\0' or '\n'
1751 rev = opts.get('rev') or None
1761 rev = opts.get('rev') or None
1752
1762
1753 ret = 1
1763 ret = 1
1754 m = cmdutil.match(repo, pats, opts, default='relglob')
1764 m = cmdutil.match(repo, pats, opts, default='relglob')
1755 m.bad = lambda x,y: False
1765 m.bad = lambda x,y: False
1756 for abs in repo[rev].walk(m):
1766 for abs in repo[rev].walk(m):
1757 if not rev and abs not in repo.dirstate:
1767 if not rev and abs not in repo.dirstate:
1758 continue
1768 continue
1759 if opts.get('fullpath'):
1769 if opts.get('fullpath'):
1760 ui.write(os.path.join(repo.root, abs), end)
1770 ui.write(os.path.join(repo.root, abs), end)
1761 else:
1771 else:
1762 ui.write(((pats and m.rel(abs)) or abs), end)
1772 ui.write(((pats and m.rel(abs)) or abs), end)
1763 ret = 0
1773 ret = 0
1764
1774
1765 return ret
1775 return ret
1766
1776
1767 def log(ui, repo, *pats, **opts):
1777 def log(ui, repo, *pats, **opts):
1768 """show revision history of entire repository or files
1778 """show revision history of entire repository or files
1769
1779
1770 Print the revision history of the specified files or the entire
1780 Print the revision history of the specified files or the entire
1771 project.
1781 project.
1772
1782
1773 File history is shown without following rename or copy history of
1783 File history is shown without following rename or copy history of
1774 files. Use -f/--follow with a file name to follow history across
1784 files. Use -f/--follow with a file name to follow history across
1775 renames and copies. --follow without a file name will only show
1785 renames and copies. --follow without a file name will only show
1776 ancestors or descendants of the starting revision. --follow-first
1786 ancestors or descendants of the starting revision. --follow-first
1777 only follows the first parent of merge revisions.
1787 only follows the first parent of merge revisions.
1778
1788
1779 If no revision range is specified, the default is tip:0 unless
1789 If no revision range is specified, the default is tip:0 unless
1780 --follow is set, in which case the working directory parent is
1790 --follow is set, in which case the working directory parent is
1781 used as the starting revision.
1791 used as the starting revision.
1782
1792
1783 See 'hg help dates' for a list of formats valid for -d/--date.
1793 See 'hg help dates' for a list of formats valid for -d/--date.
1784
1794
1785 By default this command outputs: changeset id and hash, tags,
1795 By default this command outputs: changeset id and hash, tags,
1786 non-trivial parents, user, date and time, and a summary for each
1796 non-trivial parents, user, date and time, and a summary for each
1787 commit. When the -v/--verbose switch is used, the list of changed
1797 commit. When the -v/--verbose switch is used, the list of changed
1788 files and full commit message is shown.
1798 files and full commit message is shown.
1789
1799
1790 NOTE: log -p may generate unexpected diff output for merge
1800 NOTE: log -p may generate unexpected diff output for merge
1791 changesets, as it will compare the merge changeset against its
1801 changesets, as it will compare the merge changeset against its
1792 first parent only. Also, the files: list will only reflect files
1802 first parent only. Also, the files: list will only reflect files
1793 that are different from BOTH parents.
1803 that are different from BOTH parents.
1794
1804
1795 """
1805 """
1796
1806
1797 get = util.cachefunc(lambda r: repo[r].changeset())
1807 get = util.cachefunc(lambda r: repo[r].changeset())
1798 changeiter, matchfn = cmdutil.walkchangerevs(ui, repo, pats, get, opts)
1808 changeiter, matchfn = cmdutil.walkchangerevs(ui, repo, pats, get, opts)
1799
1809
1800 limit = cmdutil.loglimit(opts)
1810 limit = cmdutil.loglimit(opts)
1801 count = 0
1811 count = 0
1802
1812
1803 if opts.get('copies') and opts.get('rev'):
1813 if opts.get('copies') and opts.get('rev'):
1804 endrev = max(cmdutil.revrange(repo, opts.get('rev'))) + 1
1814 endrev = max(cmdutil.revrange(repo, opts.get('rev'))) + 1
1805 else:
1815 else:
1806 endrev = len(repo)
1816 endrev = len(repo)
1807 rcache = {}
1817 rcache = {}
1808 ncache = {}
1818 ncache = {}
1809 def getrenamed(fn, rev):
1819 def getrenamed(fn, rev):
1810 '''looks up all renames for a file (up to endrev) the first
1820 '''looks up all renames for a file (up to endrev) the first
1811 time the file is given. It indexes on the changerev and only
1821 time the file is given. It indexes on the changerev and only
1812 parses the manifest if linkrev != changerev.
1822 parses the manifest if linkrev != changerev.
1813 Returns rename info for fn at changerev rev.'''
1823 Returns rename info for fn at changerev rev.'''
1814 if fn not in rcache:
1824 if fn not in rcache:
1815 rcache[fn] = {}
1825 rcache[fn] = {}
1816 ncache[fn] = {}
1826 ncache[fn] = {}
1817 fl = repo.file(fn)
1827 fl = repo.file(fn)
1818 for i in fl:
1828 for i in fl:
1819 node = fl.node(i)
1829 node = fl.node(i)
1820 lr = fl.linkrev(node)
1830 lr = fl.linkrev(node)
1821 renamed = fl.renamed(node)
1831 renamed = fl.renamed(node)
1822 rcache[fn][lr] = renamed
1832 rcache[fn][lr] = renamed
1823 if renamed:
1833 if renamed:
1824 ncache[fn][node] = renamed
1834 ncache[fn][node] = renamed
1825 if lr >= endrev:
1835 if lr >= endrev:
1826 break
1836 break
1827 if rev in rcache[fn]:
1837 if rev in rcache[fn]:
1828 return rcache[fn][rev]
1838 return rcache[fn][rev]
1829
1839
1830 # If linkrev != rev (i.e. rev not found in rcache) fallback to
1840 # If linkrev != rev (i.e. rev not found in rcache) fallback to
1831 # filectx logic.
1841 # filectx logic.
1832
1842
1833 try:
1843 try:
1834 return repo[rev][fn].renamed()
1844 return repo[rev][fn].renamed()
1835 except revlog.LookupError:
1845 except revlog.LookupError:
1836 pass
1846 pass
1837 return None
1847 return None
1838
1848
1839 df = False
1849 df = False
1840 if opts["date"]:
1850 if opts["date"]:
1841 df = util.matchdate(opts["date"])
1851 df = util.matchdate(opts["date"])
1842
1852
1843 only_branches = opts.get('only_branch')
1853 only_branches = opts.get('only_branch')
1844
1854
1845 displayer = cmdutil.show_changeset(ui, repo, opts, True, matchfn)
1855 displayer = cmdutil.show_changeset(ui, repo, opts, True, matchfn)
1846 for st, rev, fns in changeiter:
1856 for st, rev, fns in changeiter:
1847 if st == 'add':
1857 if st == 'add':
1848 changenode = repo.changelog.node(rev)
1858 changenode = repo.changelog.node(rev)
1849 parents = [p for p in repo.changelog.parentrevs(rev)
1859 parents = [p for p in repo.changelog.parentrevs(rev)
1850 if p != nullrev]
1860 if p != nullrev]
1851 if opts.get('no_merges') and len(parents) == 2:
1861 if opts.get('no_merges') and len(parents) == 2:
1852 continue
1862 continue
1853 if opts.get('only_merges') and len(parents) != 2:
1863 if opts.get('only_merges') and len(parents) != 2:
1854 continue
1864 continue
1855
1865
1856 if only_branches:
1866 if only_branches:
1857 revbranch = get(rev)[5]['branch']
1867 revbranch = get(rev)[5]['branch']
1858 if revbranch not in only_branches:
1868 if revbranch not in only_branches:
1859 continue
1869 continue
1860
1870
1861 if df:
1871 if df:
1862 changes = get(rev)
1872 changes = get(rev)
1863 if not df(changes[2][0]):
1873 if not df(changes[2][0]):
1864 continue
1874 continue
1865
1875
1866 if opts.get('keyword'):
1876 if opts.get('keyword'):
1867 changes = get(rev)
1877 changes = get(rev)
1868 miss = 0
1878 miss = 0
1869 for k in [kw.lower() for kw in opts['keyword']]:
1879 for k in [kw.lower() for kw in opts['keyword']]:
1870 if not (k in changes[1].lower() or
1880 if not (k in changes[1].lower() or
1871 k in changes[4].lower() or
1881 k in changes[4].lower() or
1872 k in " ".join(changes[3]).lower()):
1882 k in " ".join(changes[3]).lower()):
1873 miss = 1
1883 miss = 1
1874 break
1884 break
1875 if miss:
1885 if miss:
1876 continue
1886 continue
1877
1887
1878 if opts['user']:
1888 if opts['user']:
1879 changes = get(rev)
1889 changes = get(rev)
1880 miss = 0
1890 miss = 0
1881 for k in opts['user']:
1891 for k in opts['user']:
1882 if k != changes[1]:
1892 if k != changes[1]:
1883 miss = 1
1893 miss = 1
1884 break
1894 break
1885 if miss:
1895 if miss:
1886 continue
1896 continue
1887
1897
1888 copies = []
1898 copies = []
1889 if opts.get('copies') and rev:
1899 if opts.get('copies') and rev:
1890 for fn in get(rev)[3]:
1900 for fn in get(rev)[3]:
1891 rename = getrenamed(fn, rev)
1901 rename = getrenamed(fn, rev)
1892 if rename:
1902 if rename:
1893 copies.append((fn, rename[0]))
1903 copies.append((fn, rename[0]))
1894 displayer.show(rev, changenode, copies=copies)
1904 displayer.show(rev, changenode, copies=copies)
1895 elif st == 'iter':
1905 elif st == 'iter':
1896 if count == limit: break
1906 if count == limit: break
1897 if displayer.flush(rev):
1907 if displayer.flush(rev):
1898 count += 1
1908 count += 1
1899
1909
1900 def manifest(ui, repo, node=None, rev=None):
1910 def manifest(ui, repo, node=None, rev=None):
1901 """output the current or given revision of the project manifest
1911 """output the current or given revision of the project manifest
1902
1912
1903 Print a list of version controlled files for the given revision.
1913 Print a list of version controlled files for the given revision.
1904 If no revision is given, the parent of the working directory is used,
1914 If no revision is given, the parent of the working directory is used,
1905 or tip if no revision is checked out.
1915 or tip if no revision is checked out.
1906
1916
1907 The manifest is the list of files being version controlled. If no revision
1917 The manifest is the list of files being version controlled. If no revision
1908 is given then the first parent of the working directory is used.
1918 is given then the first parent of the working directory is used.
1909
1919
1910 With -v flag, print file permissions, symlink and executable bits. With
1920 With -v flag, print file permissions, symlink and executable bits. With
1911 --debug flag, print file revision hashes.
1921 --debug flag, print file revision hashes.
1912 """
1922 """
1913
1923
1914 if rev and node:
1924 if rev and node:
1915 raise util.Abort(_("please specify just one revision"))
1925 raise util.Abort(_("please specify just one revision"))
1916
1926
1917 if not node:
1927 if not node:
1918 node = rev
1928 node = rev
1919
1929
1920 decor = {'l':'644 @ ', 'x':'755 * ', '':'644 '}
1930 decor = {'l':'644 @ ', 'x':'755 * ', '':'644 '}
1921 ctx = repo[node]
1931 ctx = repo[node]
1922 for f in ctx:
1932 for f in ctx:
1923 if ui.debugflag:
1933 if ui.debugflag:
1924 ui.write("%40s " % hex(ctx.manifest()[f]))
1934 ui.write("%40s " % hex(ctx.manifest()[f]))
1925 if ui.verbose:
1935 if ui.verbose:
1926 ui.write(decor[ctx.flags(f)])
1936 ui.write(decor[ctx.flags(f)])
1927 ui.write("%s\n" % f)
1937 ui.write("%s\n" % f)
1928
1938
1929 def merge(ui, repo, node=None, force=None, rev=None):
1939 def merge(ui, repo, node=None, force=None, rev=None):
1930 """merge working directory with another revision
1940 """merge working directory with another revision
1931
1941
1932 Merge the contents of the current working directory and the
1942 Merge the contents of the current working directory and the
1933 requested revision. Files that changed between either parent are
1943 requested revision. Files that changed between either parent are
1934 marked as changed for the next commit and a commit must be
1944 marked as changed for the next commit and a commit must be
1935 performed before any further updates are allowed.
1945 performed before any further updates are allowed.
1936
1946
1937 If no revision is specified, the working directory's parent is a
1947 If no revision is specified, the working directory's parent is a
1938 head revision, and the current branch contains exactly one other head,
1948 head revision, and the current branch contains exactly one other head,
1939 the other head is merged with by default. Otherwise, an explicit
1949 the other head is merged with by default. Otherwise, an explicit
1940 revision to merge with must be provided.
1950 revision to merge with must be provided.
1941 """
1951 """
1942
1952
1943 if rev and node:
1953 if rev and node:
1944 raise util.Abort(_("please specify just one revision"))
1954 raise util.Abort(_("please specify just one revision"))
1945 if not node:
1955 if not node:
1946 node = rev
1956 node = rev
1947
1957
1948 if not node:
1958 if not node:
1949 branch = repo.changectx(None).branch()
1959 branch = repo.changectx(None).branch()
1950 bheads = repo.branchheads(branch)
1960 bheads = repo.branchheads(branch)
1951 if len(bheads) > 2:
1961 if len(bheads) > 2:
1952 raise util.Abort(_("branch '%s' has %d heads - "
1962 raise util.Abort(_("branch '%s' has %d heads - "
1953 "please merge with an explicit rev") %
1963 "please merge with an explicit rev") %
1954 (branch, len(bheads)))
1964 (branch, len(bheads)))
1955
1965
1956 parent = repo.dirstate.parents()[0]
1966 parent = repo.dirstate.parents()[0]
1957 if len(bheads) == 1:
1967 if len(bheads) == 1:
1958 if len(repo.heads()) > 1:
1968 if len(repo.heads()) > 1:
1959 raise util.Abort(_("branch '%s' has one head - "
1969 raise util.Abort(_("branch '%s' has one head - "
1960 "please merge with an explicit rev") %
1970 "please merge with an explicit rev") %
1961 branch)
1971 branch)
1962 msg = _('there is nothing to merge')
1972 msg = _('there is nothing to merge')
1963 if parent != repo.lookup(repo[None].branch()):
1973 if parent != repo.lookup(repo[None].branch()):
1964 msg = _('%s - use "hg update" instead') % msg
1974 msg = _('%s - use "hg update" instead') % msg
1965 raise util.Abort(msg)
1975 raise util.Abort(msg)
1966
1976
1967 if parent not in bheads:
1977 if parent not in bheads:
1968 raise util.Abort(_('working dir not at a head rev - '
1978 raise util.Abort(_('working dir not at a head rev - '
1969 'use "hg update" or merge with an explicit rev'))
1979 'use "hg update" or merge with an explicit rev'))
1970 node = parent == bheads[0] and bheads[-1] or bheads[0]
1980 node = parent == bheads[0] and bheads[-1] or bheads[0]
1971 return hg.merge(repo, node, force=force)
1981 return hg.merge(repo, node, force=force)
1972
1982
1973 def outgoing(ui, repo, dest=None, **opts):
1983 def outgoing(ui, repo, dest=None, **opts):
1974 """show changesets not found in destination
1984 """show changesets not found in destination
1975
1985
1976 Show changesets not found in the specified destination repository or
1986 Show changesets not found in the specified destination repository or
1977 the default push location. These are the changesets that would be pushed
1987 the default push location. These are the changesets that would be pushed
1978 if a push was requested.
1988 if a push was requested.
1979
1989
1980 See pull for valid destination format details.
1990 See pull for valid destination format details.
1981 """
1991 """
1982 limit = cmdutil.loglimit(opts)
1992 limit = cmdutil.loglimit(opts)
1983 dest, revs, checkout = hg.parseurl(
1993 dest, revs, checkout = hg.parseurl(
1984 ui.expandpath(dest or 'default-push', dest or 'default'), opts.get('rev'))
1994 ui.expandpath(dest or 'default-push', dest or 'default'), opts.get('rev'))
1985 cmdutil.setremoteconfig(ui, opts)
1995 cmdutil.setremoteconfig(ui, opts)
1986 if revs:
1996 if revs:
1987 revs = [repo.lookup(rev) for rev in revs]
1997 revs = [repo.lookup(rev) for rev in revs]
1988
1998
1989 other = hg.repository(ui, dest)
1999 other = hg.repository(ui, dest)
1990 ui.status(_('comparing with %s\n') % util.hidepassword(dest))
2000 ui.status(_('comparing with %s\n') % util.hidepassword(dest))
1991 o = repo.findoutgoing(other, force=opts.get('force'))
2001 o = repo.findoutgoing(other, force=opts.get('force'))
1992 if not o:
2002 if not o:
1993 ui.status(_("no changes found\n"))
2003 ui.status(_("no changes found\n"))
1994 return 1
2004 return 1
1995 o = repo.changelog.nodesbetween(o, revs)[0]
2005 o = repo.changelog.nodesbetween(o, revs)[0]
1996 if opts.get('newest_first'):
2006 if opts.get('newest_first'):
1997 o.reverse()
2007 o.reverse()
1998 displayer = cmdutil.show_changeset(ui, repo, opts)
2008 displayer = cmdutil.show_changeset(ui, repo, opts)
1999 count = 0
2009 count = 0
2000 for n in o:
2010 for n in o:
2001 if count >= limit:
2011 if count >= limit:
2002 break
2012 break
2003 parents = [p for p in repo.changelog.parents(n) if p != nullid]
2013 parents = [p for p in repo.changelog.parents(n) if p != nullid]
2004 if opts.get('no_merges') and len(parents) == 2:
2014 if opts.get('no_merges') and len(parents) == 2:
2005 continue
2015 continue
2006 count += 1
2016 count += 1
2007 displayer.show(changenode=n)
2017 displayer.show(changenode=n)
2008
2018
2009 def parents(ui, repo, file_=None, **opts):
2019 def parents(ui, repo, file_=None, **opts):
2010 """show the parents of the working dir or revision
2020 """show the parents of the working dir or revision
2011
2021
2012 Print the working directory's parent revisions. If a
2022 Print the working directory's parent revisions. If a
2013 revision is given via --rev, the parent of that revision
2023 revision is given via --rev, the parent of that revision
2014 will be printed. If a file argument is given, revision in
2024 will be printed. If a file argument is given, revision in
2015 which the file was last changed (before the working directory
2025 which the file was last changed (before the working directory
2016 revision or the argument to --rev if given) is printed.
2026 revision or the argument to --rev if given) is printed.
2017 """
2027 """
2018 rev = opts.get('rev')
2028 rev = opts.get('rev')
2019 if rev:
2029 if rev:
2020 ctx = repo[rev]
2030 ctx = repo[rev]
2021 else:
2031 else:
2022 ctx = repo[None]
2032 ctx = repo[None]
2023
2033
2024 if file_:
2034 if file_:
2025 m = cmdutil.match(repo, (file_,), opts)
2035 m = cmdutil.match(repo, (file_,), opts)
2026 if m.anypats() or len(m.files()) != 1:
2036 if m.anypats() or len(m.files()) != 1:
2027 raise util.Abort(_('can only specify an explicit file name'))
2037 raise util.Abort(_('can only specify an explicit file name'))
2028 file_ = m.files()[0]
2038 file_ = m.files()[0]
2029 filenodes = []
2039 filenodes = []
2030 for cp in ctx.parents():
2040 for cp in ctx.parents():
2031 if not cp:
2041 if not cp:
2032 continue
2042 continue
2033 try:
2043 try:
2034 filenodes.append(cp.filenode(file_))
2044 filenodes.append(cp.filenode(file_))
2035 except revlog.LookupError:
2045 except revlog.LookupError:
2036 pass
2046 pass
2037 if not filenodes:
2047 if not filenodes:
2038 raise util.Abort(_("'%s' not found in manifest!") % file_)
2048 raise util.Abort(_("'%s' not found in manifest!") % file_)
2039 fl = repo.file(file_)
2049 fl = repo.file(file_)
2040 p = [repo.lookup(fl.linkrev(fn)) for fn in filenodes]
2050 p = [repo.lookup(fl.linkrev(fn)) for fn in filenodes]
2041 else:
2051 else:
2042 p = [cp.node() for cp in ctx.parents()]
2052 p = [cp.node() for cp in ctx.parents()]
2043
2053
2044 displayer = cmdutil.show_changeset(ui, repo, opts)
2054 displayer = cmdutil.show_changeset(ui, repo, opts)
2045 for n in p:
2055 for n in p:
2046 if n != nullid:
2056 if n != nullid:
2047 displayer.show(changenode=n)
2057 displayer.show(changenode=n)
2048
2058
2049 def paths(ui, repo, search=None):
2059 def paths(ui, repo, search=None):
2050 """show definition of symbolic path names
2060 """show definition of symbolic path names
2051
2061
2052 Show definition of symbolic path name NAME. If no name is given, show
2062 Show definition of symbolic path name NAME. If no name is given, show
2053 definition of available names.
2063 definition of available names.
2054
2064
2055 Path names are defined in the [paths] section of /etc/mercurial/hgrc
2065 Path names are defined in the [paths] section of /etc/mercurial/hgrc
2056 and $HOME/.hgrc. If run inside a repository, .hg/hgrc is used, too.
2066 and $HOME/.hgrc. If run inside a repository, .hg/hgrc is used, too.
2057 """
2067 """
2058 if search:
2068 if search:
2059 for name, path in ui.configitems("paths"):
2069 for name, path in ui.configitems("paths"):
2060 if name == search:
2070 if name == search:
2061 ui.write("%s\n" % util.hidepassword(path))
2071 ui.write("%s\n" % util.hidepassword(path))
2062 return
2072 return
2063 ui.warn(_("not found!\n"))
2073 ui.warn(_("not found!\n"))
2064 return 1
2074 return 1
2065 else:
2075 else:
2066 for name, path in ui.configitems("paths"):
2076 for name, path in ui.configitems("paths"):
2067 ui.write("%s = %s\n" % (name, util.hidepassword(path)))
2077 ui.write("%s = %s\n" % (name, util.hidepassword(path)))
2068
2078
2069 def postincoming(ui, repo, modheads, optupdate, checkout):
2079 def postincoming(ui, repo, modheads, optupdate, checkout):
2070 if modheads == 0:
2080 if modheads == 0:
2071 return
2081 return
2072 if optupdate:
2082 if optupdate:
2073 if modheads <= 1 or checkout:
2083 if modheads <= 1 or checkout:
2074 return hg.update(repo, checkout)
2084 return hg.update(repo, checkout)
2075 else:
2085 else:
2076 ui.status(_("not updating, since new heads added\n"))
2086 ui.status(_("not updating, since new heads added\n"))
2077 if modheads > 1:
2087 if modheads > 1:
2078 ui.status(_("(run 'hg heads' to see heads, 'hg merge' to merge)\n"))
2088 ui.status(_("(run 'hg heads' to see heads, 'hg merge' to merge)\n"))
2079 else:
2089 else:
2080 ui.status(_("(run 'hg update' to get a working copy)\n"))
2090 ui.status(_("(run 'hg update' to get a working copy)\n"))
2081
2091
2082 def pull(ui, repo, source="default", **opts):
2092 def pull(ui, repo, source="default", **opts):
2083 """pull changes from the specified source
2093 """pull changes from the specified source
2084
2094
2085 Pull changes from a remote repository to a local one.
2095 Pull changes from a remote repository to a local one.
2086
2096
2087 This finds all changes from the repository at the specified path
2097 This finds all changes from the repository at the specified path
2088 or URL and adds them to the local repository. By default, this
2098 or URL and adds them to the local repository. By default, this
2089 does not update the copy of the project in the working directory.
2099 does not update the copy of the project in the working directory.
2090
2100
2091 Valid URLs are of the form:
2101 Valid URLs are of the form:
2092
2102
2093 local/filesystem/path (or file://local/filesystem/path)
2103 local/filesystem/path (or file://local/filesystem/path)
2094 http://[user[:pass]@]host[:port]/[path]
2104 http://[user[:pass]@]host[:port]/[path]
2095 https://[user[:pass]@]host[:port]/[path]
2105 https://[user[:pass]@]host[:port]/[path]
2096 ssh://[user[:pass]@]host[:port]/[path]
2106 ssh://[user[:pass]@]host[:port]/[path]
2097
2107
2098 Paths in the local filesystem can either point to Mercurial
2108 Paths in the local filesystem can either point to Mercurial
2099 repositories or to bundle files (as created by 'hg bundle' or
2109 repositories or to bundle files (as created by 'hg bundle' or
2100 'hg incoming --bundle').
2110 'hg incoming --bundle').
2101
2111
2102 An optional identifier after # indicates a particular branch, tag,
2112 An optional identifier after # indicates a particular branch, tag,
2103 or changeset to pull.
2113 or changeset to pull.
2104
2114
2105 Some notes about using SSH with Mercurial:
2115 Some notes about using SSH with Mercurial:
2106 - SSH requires an accessible shell account on the destination machine
2116 - SSH requires an accessible shell account on the destination machine
2107 and a copy of hg in the remote path or specified with as remotecmd.
2117 and a copy of hg in the remote path or specified with as remotecmd.
2108 - path is relative to the remote user's home directory by default.
2118 - path is relative to the remote user's home directory by default.
2109 Use an extra slash at the start of a path to specify an absolute path:
2119 Use an extra slash at the start of a path to specify an absolute path:
2110 ssh://example.com//tmp/repository
2120 ssh://example.com//tmp/repository
2111 - Mercurial doesn't use its own compression via SSH; the right thing
2121 - Mercurial doesn't use its own compression via SSH; the right thing
2112 to do is to configure it in your ~/.ssh/config, e.g.:
2122 to do is to configure it in your ~/.ssh/config, e.g.:
2113 Host *.mylocalnetwork.example.com
2123 Host *.mylocalnetwork.example.com
2114 Compression no
2124 Compression no
2115 Host *
2125 Host *
2116 Compression yes
2126 Compression yes
2117 Alternatively specify "ssh -C" as your ssh command in your hgrc or
2127 Alternatively specify "ssh -C" as your ssh command in your hgrc or
2118 with the --ssh command line option.
2128 with the --ssh command line option.
2119 """
2129 """
2120 source, revs, checkout = hg.parseurl(ui.expandpath(source), opts.get('rev'))
2130 source, revs, checkout = hg.parseurl(ui.expandpath(source), opts.get('rev'))
2121 cmdutil.setremoteconfig(ui, opts)
2131 cmdutil.setremoteconfig(ui, opts)
2122
2132
2123 other = hg.repository(ui, source)
2133 other = hg.repository(ui, source)
2124 ui.status(_('pulling from %s\n') % util.hidepassword(source))
2134 ui.status(_('pulling from %s\n') % util.hidepassword(source))
2125 if revs:
2135 if revs:
2126 try:
2136 try:
2127 revs = [other.lookup(rev) for rev in revs]
2137 revs = [other.lookup(rev) for rev in revs]
2128 except NoCapability:
2138 except NoCapability:
2129 error = _("Other repository doesn't support revision lookup, "
2139 error = _("Other repository doesn't support revision lookup, "
2130 "so a rev cannot be specified.")
2140 "so a rev cannot be specified.")
2131 raise util.Abort(error)
2141 raise util.Abort(error)
2132
2142
2133 modheads = repo.pull(other, heads=revs, force=opts.get('force'))
2143 modheads = repo.pull(other, heads=revs, force=opts.get('force'))
2134 return postincoming(ui, repo, modheads, opts.get('update'), checkout)
2144 return postincoming(ui, repo, modheads, opts.get('update'), checkout)
2135
2145
2136 def push(ui, repo, dest=None, **opts):
2146 def push(ui, repo, dest=None, **opts):
2137 """push changes to the specified destination
2147 """push changes to the specified destination
2138
2148
2139 Push changes from the local repository to the given destination.
2149 Push changes from the local repository to the given destination.
2140
2150
2141 This is the symmetrical operation for pull. It helps to move
2151 This is the symmetrical operation for pull. It helps to move
2142 changes from the current repository to a different one. If the
2152 changes from the current repository to a different one. If the
2143 destination is local this is identical to a pull in that directory
2153 destination is local this is identical to a pull in that directory
2144 from the current one.
2154 from the current one.
2145
2155
2146 By default, push will refuse to run if it detects the result would
2156 By default, push will refuse to run if it detects the result would
2147 increase the number of remote heads. This generally indicates the
2157 increase the number of remote heads. This generally indicates the
2148 the client has forgotten to pull and merge before pushing.
2158 the client has forgotten to pull and merge before pushing.
2149
2159
2150 Valid URLs are of the form:
2160 Valid URLs are of the form:
2151
2161
2152 local/filesystem/path (or file://local/filesystem/path)
2162 local/filesystem/path (or file://local/filesystem/path)
2153 ssh://[user[:pass]@]host[:port]/[path]
2163 ssh://[user[:pass]@]host[:port]/[path]
2154 http://[user[:pass]@]host[:port]/[path]
2164 http://[user[:pass]@]host[:port]/[path]
2155 https://[user[:pass]@]host[:port]/[path]
2165 https://[user[:pass]@]host[:port]/[path]
2156
2166
2157 An optional identifier after # indicates a particular branch, tag,
2167 An optional identifier after # indicates a particular branch, tag,
2158 or changeset to push. If -r is used, the named changeset and all its
2168 or changeset to push. If -r is used, the named changeset and all its
2159 ancestors will be pushed to the remote repository.
2169 ancestors will be pushed to the remote repository.
2160
2170
2161 Look at the help text for the pull command for important details
2171 Look at the help text for the pull command for important details
2162 about ssh:// URLs.
2172 about ssh:// URLs.
2163
2173
2164 Pushing to http:// and https:// URLs is only possible, if this
2174 Pushing to http:// and https:// URLs is only possible, if this
2165 feature is explicitly enabled on the remote Mercurial server.
2175 feature is explicitly enabled on the remote Mercurial server.
2166 """
2176 """
2167 dest, revs, checkout = hg.parseurl(
2177 dest, revs, checkout = hg.parseurl(
2168 ui.expandpath(dest or 'default-push', dest or 'default'), opts.get('rev'))
2178 ui.expandpath(dest or 'default-push', dest or 'default'), opts.get('rev'))
2169 cmdutil.setremoteconfig(ui, opts)
2179 cmdutil.setremoteconfig(ui, opts)
2170
2180
2171 other = hg.repository(ui, dest)
2181 other = hg.repository(ui, dest)
2172 ui.status(_('pushing to %s\n') % util.hidepassword(dest))
2182 ui.status(_('pushing to %s\n') % util.hidepassword(dest))
2173 if revs:
2183 if revs:
2174 revs = [repo.lookup(rev) for rev in revs]
2184 revs = [repo.lookup(rev) for rev in revs]
2175 r = repo.push(other, opts.get('force'), revs=revs)
2185 r = repo.push(other, opts.get('force'), revs=revs)
2176 return r == 0
2186 return r == 0
2177
2187
2178 def rawcommit(ui, repo, *pats, **opts):
2188 def rawcommit(ui, repo, *pats, **opts):
2179 """raw commit interface (DEPRECATED)
2189 """raw commit interface (DEPRECATED)
2180
2190
2181 (DEPRECATED)
2191 (DEPRECATED)
2182 Lowlevel commit, for use in helper scripts.
2192 Lowlevel commit, for use in helper scripts.
2183
2193
2184 This command is not intended to be used by normal users, as it is
2194 This command is not intended to be used by normal users, as it is
2185 primarily useful for importing from other SCMs.
2195 primarily useful for importing from other SCMs.
2186
2196
2187 This command is now deprecated and will be removed in a future
2197 This command is now deprecated and will be removed in a future
2188 release, please use debugsetparents and commit instead.
2198 release, please use debugsetparents and commit instead.
2189 """
2199 """
2190
2200
2191 ui.warn(_("(the rawcommit command is deprecated)\n"))
2201 ui.warn(_("(the rawcommit command is deprecated)\n"))
2192
2202
2193 message = cmdutil.logmessage(opts)
2203 message = cmdutil.logmessage(opts)
2194
2204
2195 files = cmdutil.match(repo, pats, opts).files()
2205 files = cmdutil.match(repo, pats, opts).files()
2196 if opts.get('files'):
2206 if opts.get('files'):
2197 files += open(opts['files']).read().splitlines()
2207 files += open(opts['files']).read().splitlines()
2198
2208
2199 parents = [repo.lookup(p) for p in opts['parent']]
2209 parents = [repo.lookup(p) for p in opts['parent']]
2200
2210
2201 try:
2211 try:
2202 repo.rawcommit(files, message, opts['user'], opts['date'], *parents)
2212 repo.rawcommit(files, message, opts['user'], opts['date'], *parents)
2203 except ValueError, inst:
2213 except ValueError, inst:
2204 raise util.Abort(str(inst))
2214 raise util.Abort(str(inst))
2205
2215
2206 def recover(ui, repo):
2216 def recover(ui, repo):
2207 """roll back an interrupted transaction
2217 """roll back an interrupted transaction
2208
2218
2209 Recover from an interrupted commit or pull.
2219 Recover from an interrupted commit or pull.
2210
2220
2211 This command tries to fix the repository status after an interrupted
2221 This command tries to fix the repository status after an interrupted
2212 operation. It should only be necessary when Mercurial suggests it.
2222 operation. It should only be necessary when Mercurial suggests it.
2213 """
2223 """
2214 if repo.recover():
2224 if repo.recover():
2215 return hg.verify(repo)
2225 return hg.verify(repo)
2216 return 1
2226 return 1
2217
2227
2218 def remove(ui, repo, *pats, **opts):
2228 def remove(ui, repo, *pats, **opts):
2219 """remove the specified files on the next commit
2229 """remove the specified files on the next commit
2220
2230
2221 Schedule the indicated files for removal from the repository.
2231 Schedule the indicated files for removal from the repository.
2222
2232
2223 This only removes files from the current branch, not from the entire
2233 This only removes files from the current branch, not from the entire
2224 project history. -A can be used to remove only files that have already
2234 project history. -A can be used to remove only files that have already
2225 been deleted, -f can be used to force deletion, and -Af can be used
2235 been deleted, -f can be used to force deletion, and -Af can be used
2226 to remove files from the next revision without deleting them.
2236 to remove files from the next revision without deleting them.
2227
2237
2228 The following table details the behavior of remove for different file
2238 The following table details the behavior of remove for different file
2229 states (columns) and option combinations (rows). The file states are
2239 states (columns) and option combinations (rows). The file states are
2230 Added, Clean, Modified and Missing (as reported by hg status). The
2240 Added, Clean, Modified and Missing (as reported by hg status). The
2231 actions are Warn, Remove (from branch) and Delete (from disk).
2241 actions are Warn, Remove (from branch) and Delete (from disk).
2232
2242
2233 A C M !
2243 A C M !
2234 none W RD W R
2244 none W RD W R
2235 -f R RD RD R
2245 -f R RD RD R
2236 -A W W W R
2246 -A W W W R
2237 -Af R R R R
2247 -Af R R R R
2238
2248
2239 This command schedules the files to be removed at the next commit.
2249 This command schedules the files to be removed at the next commit.
2240 To undo a remove before that, see hg revert.
2250 To undo a remove before that, see hg revert.
2241 """
2251 """
2242
2252
2243 after, force = opts.get('after'), opts.get('force')
2253 after, force = opts.get('after'), opts.get('force')
2244 if not pats and not after:
2254 if not pats and not after:
2245 raise util.Abort(_('no files specified'))
2255 raise util.Abort(_('no files specified'))
2246
2256
2247 m = cmdutil.match(repo, pats, opts)
2257 m = cmdutil.match(repo, pats, opts)
2248 s = repo.status(match=m, clean=True)
2258 s = repo.status(match=m, clean=True)
2249 modified, added, deleted, clean = s[0], s[1], s[3], s[6]
2259 modified, added, deleted, clean = s[0], s[1], s[3], s[6]
2250
2260
2251 def warn(files, reason):
2261 def warn(files, reason):
2252 for f in files:
2262 for f in files:
2253 ui.warn(_('not removing %s: file %s (use -f to force removal)\n')
2263 ui.warn(_('not removing %s: file %s (use -f to force removal)\n')
2254 % (m.rel(f), reason))
2264 % (m.rel(f), reason))
2255
2265
2256 if force:
2266 if force:
2257 remove, forget = modified + deleted + clean, added
2267 remove, forget = modified + deleted + clean, added
2258 elif after:
2268 elif after:
2259 remove, forget = deleted, []
2269 remove, forget = deleted, []
2260 warn(modified + added + clean, _('still exists'))
2270 warn(modified + added + clean, _('still exists'))
2261 else:
2271 else:
2262 remove, forget = deleted + clean, []
2272 remove, forget = deleted + clean, []
2263 warn(modified, _('is modified'))
2273 warn(modified, _('is modified'))
2264 warn(added, _('has been marked for add'))
2274 warn(added, _('has been marked for add'))
2265
2275
2266 for f in util.sort(remove + forget):
2276 for f in util.sort(remove + forget):
2267 if ui.verbose or not m.exact(f):
2277 if ui.verbose or not m.exact(f):
2268 ui.status(_('removing %s\n') % m.rel(f))
2278 ui.status(_('removing %s\n') % m.rel(f))
2269
2279
2270 repo.forget(forget)
2280 repo.forget(forget)
2271 repo.remove(remove, unlink=not after)
2281 repo.remove(remove, unlink=not after)
2272
2282
2273 def rename(ui, repo, *pats, **opts):
2283 def rename(ui, repo, *pats, **opts):
2274 """rename files; equivalent of copy + remove
2284 """rename files; equivalent of copy + remove
2275
2285
2276 Mark dest as copies of sources; mark sources for deletion. If
2286 Mark dest as copies of sources; mark sources for deletion. If
2277 dest is a directory, copies are put in that directory. If dest is
2287 dest is a directory, copies are put in that directory. If dest is
2278 a file, there can only be one source.
2288 a file, there can only be one source.
2279
2289
2280 By default, this command copies the contents of files as they
2290 By default, this command copies the contents of files as they
2281 stand in the working directory. If invoked with --after, the
2291 stand in the working directory. If invoked with --after, the
2282 operation is recorded, but no copying is performed.
2292 operation is recorded, but no copying is performed.
2283
2293
2284 This command takes effect in the next commit. To undo a rename
2294 This command takes effect in the next commit. To undo a rename
2285 before that, see hg revert.
2295 before that, see hg revert.
2286 """
2296 """
2287 wlock = repo.wlock(False)
2297 wlock = repo.wlock(False)
2288 try:
2298 try:
2289 return cmdutil.copy(ui, repo, pats, opts, rename=True)
2299 return cmdutil.copy(ui, repo, pats, opts, rename=True)
2290 finally:
2300 finally:
2291 del wlock
2301 del wlock
2292
2302
2293 def resolve(ui, repo, *pats, **opts):
2303 def resolve(ui, repo, *pats, **opts):
2294 """resolve file merges from a branch merge or update
2304 """resolve file merges from a branch merge or update
2295
2305
2296 This command will attempt to resolve unresolved merges from the
2306 This command will attempt to resolve unresolved merges from the
2297 last update or merge command. This will use the local file
2307 last update or merge command. This will use the local file
2298 revision preserved at the last update or merge to cleanly retry
2308 revision preserved at the last update or merge to cleanly retry
2299 the file merge attempt. With no file or options specified, this
2309 the file merge attempt. With no file or options specified, this
2300 command will attempt to resolve all unresolved files.
2310 command will attempt to resolve all unresolved files.
2301
2311
2302 The codes used to show the status of files are:
2312 The codes used to show the status of files are:
2303 U = unresolved
2313 U = unresolved
2304 R = resolved
2314 R = resolved
2305 """
2315 """
2306
2316
2307 if len([x for x in opts if opts[x]]) > 1:
2317 if len([x for x in opts if opts[x]]) > 1:
2308 raise util.Abort(_("too many options specified"))
2318 raise util.Abort(_("too many options specified"))
2309
2319
2310 ms = merge_.mergestate(repo)
2320 ms = merge_.mergestate(repo)
2311 m = cmdutil.match(repo, pats, opts)
2321 m = cmdutil.match(repo, pats, opts)
2312
2322
2313 for f in ms:
2323 for f in ms:
2314 if m(f):
2324 if m(f):
2315 if opts.get("list"):
2325 if opts.get("list"):
2316 ui.write("%s %s\n" % (ms[f].upper(), f))
2326 ui.write("%s %s\n" % (ms[f].upper(), f))
2317 elif opts.get("mark"):
2327 elif opts.get("mark"):
2318 ms.mark(f, "r")
2328 ms.mark(f, "r")
2319 elif opts.get("unmark"):
2329 elif opts.get("unmark"):
2320 ms.mark(f, "u")
2330 ms.mark(f, "u")
2321 else:
2331 else:
2322 wctx = repo[None]
2332 wctx = repo[None]
2323 mctx = wctx.parents()[-1]
2333 mctx = wctx.parents()[-1]
2324 ms.resolve(f, wctx, mctx)
2334 ms.resolve(f, wctx, mctx)
2325
2335
2326 def revert(ui, repo, *pats, **opts):
2336 def revert(ui, repo, *pats, **opts):
2327 """restore individual files or dirs to an earlier state
2337 """restore individual files or dirs to an earlier state
2328
2338
2329 (use update -r to check out earlier revisions, revert does not
2339 (use update -r to check out earlier revisions, revert does not
2330 change the working dir parents)
2340 change the working dir parents)
2331
2341
2332 With no revision specified, revert the named files or directories
2342 With no revision specified, revert the named files or directories
2333 to the contents they had in the parent of the working directory.
2343 to the contents they had in the parent of the working directory.
2334 This restores the contents of the affected files to an unmodified
2344 This restores the contents of the affected files to an unmodified
2335 state and unschedules adds, removes, copies, and renames. If the
2345 state and unschedules adds, removes, copies, and renames. If the
2336 working directory has two parents, you must explicitly specify the
2346 working directory has two parents, you must explicitly specify the
2337 revision to revert to.
2347 revision to revert to.
2338
2348
2339 Using the -r option, revert the given files or directories to their
2349 Using the -r option, revert the given files or directories to their
2340 contents as of a specific revision. This can be helpful to "roll
2350 contents as of a specific revision. This can be helpful to "roll
2341 back" some or all of an earlier change.
2351 back" some or all of an earlier change.
2342 See 'hg help dates' for a list of formats valid for -d/--date.
2352 See 'hg help dates' for a list of formats valid for -d/--date.
2343
2353
2344 Revert modifies the working directory. It does not commit any
2354 Revert modifies the working directory. It does not commit any
2345 changes, or change the parent of the working directory. If you
2355 changes, or change the parent of the working directory. If you
2346 revert to a revision other than the parent of the working
2356 revert to a revision other than the parent of the working
2347 directory, the reverted files will thus appear modified
2357 directory, the reverted files will thus appear modified
2348 afterwards.
2358 afterwards.
2349
2359
2350 If a file has been deleted, it is restored. If the executable
2360 If a file has been deleted, it is restored. If the executable
2351 mode of a file was changed, it is reset.
2361 mode of a file was changed, it is reset.
2352
2362
2353 If names are given, all files matching the names are reverted.
2363 If names are given, all files matching the names are reverted.
2354 If no arguments are given, no files are reverted.
2364 If no arguments are given, no files are reverted.
2355
2365
2356 Modified files are saved with a .orig suffix before reverting.
2366 Modified files are saved with a .orig suffix before reverting.
2357 To disable these backups, use --no-backup.
2367 To disable these backups, use --no-backup.
2358 """
2368 """
2359
2369
2360 if opts["date"]:
2370 if opts["date"]:
2361 if opts["rev"]:
2371 if opts["rev"]:
2362 raise util.Abort(_("you can't specify a revision and a date"))
2372 raise util.Abort(_("you can't specify a revision and a date"))
2363 opts["rev"] = cmdutil.finddate(ui, repo, opts["date"])
2373 opts["rev"] = cmdutil.finddate(ui, repo, opts["date"])
2364
2374
2365 if not pats and not opts.get('all'):
2375 if not pats and not opts.get('all'):
2366 raise util.Abort(_('no files or directories specified; '
2376 raise util.Abort(_('no files or directories specified; '
2367 'use --all to revert the whole repo'))
2377 'use --all to revert the whole repo'))
2368
2378
2369 parent, p2 = repo.dirstate.parents()
2379 parent, p2 = repo.dirstate.parents()
2370 if not opts.get('rev') and p2 != nullid:
2380 if not opts.get('rev') and p2 != nullid:
2371 raise util.Abort(_('uncommitted merge - please provide a '
2381 raise util.Abort(_('uncommitted merge - please provide a '
2372 'specific revision'))
2382 'specific revision'))
2373 ctx = repo[opts.get('rev')]
2383 ctx = repo[opts.get('rev')]
2374 node = ctx.node()
2384 node = ctx.node()
2375 mf = ctx.manifest()
2385 mf = ctx.manifest()
2376 if node == parent:
2386 if node == parent:
2377 pmf = mf
2387 pmf = mf
2378 else:
2388 else:
2379 pmf = None
2389 pmf = None
2380
2390
2381 # need all matching names in dirstate and manifest of target rev,
2391 # need all matching names in dirstate and manifest of target rev,
2382 # so have to walk both. do not print errors if files exist in one
2392 # so have to walk both. do not print errors if files exist in one
2383 # but not other.
2393 # but not other.
2384
2394
2385 names = {}
2395 names = {}
2386
2396
2387 wlock = repo.wlock()
2397 wlock = repo.wlock()
2388 try:
2398 try:
2389 # walk dirstate.
2399 # walk dirstate.
2390 files = []
2400 files = []
2391
2401
2392 m = cmdutil.match(repo, pats, opts)
2402 m = cmdutil.match(repo, pats, opts)
2393 m.bad = lambda x,y: False
2403 m.bad = lambda x,y: False
2394 for abs in repo.walk(m):
2404 for abs in repo.walk(m):
2395 names[abs] = m.rel(abs), m.exact(abs)
2405 names[abs] = m.rel(abs), m.exact(abs)
2396
2406
2397 # walk target manifest.
2407 # walk target manifest.
2398
2408
2399 def badfn(path, msg):
2409 def badfn(path, msg):
2400 if path in names:
2410 if path in names:
2401 return False
2411 return False
2402 path_ = path + '/'
2412 path_ = path + '/'
2403 for f in names:
2413 for f in names:
2404 if f.startswith(path_):
2414 if f.startswith(path_):
2405 return False
2415 return False
2406 repo.ui.warn("%s: %s\n" % (m.rel(path), msg))
2416 repo.ui.warn("%s: %s\n" % (m.rel(path), msg))
2407 return False
2417 return False
2408
2418
2409 m = cmdutil.match(repo, pats, opts)
2419 m = cmdutil.match(repo, pats, opts)
2410 m.bad = badfn
2420 m.bad = badfn
2411 for abs in repo[node].walk(m):
2421 for abs in repo[node].walk(m):
2412 if abs not in names:
2422 if abs not in names:
2413 names[abs] = m.rel(abs), m.exact(abs)
2423 names[abs] = m.rel(abs), m.exact(abs)
2414
2424
2415 m = cmdutil.matchfiles(repo, names)
2425 m = cmdutil.matchfiles(repo, names)
2416 changes = repo.status(match=m)[:4]
2426 changes = repo.status(match=m)[:4]
2417 modified, added, removed, deleted = map(dict.fromkeys, changes)
2427 modified, added, removed, deleted = map(dict.fromkeys, changes)
2418
2428
2419 # if f is a rename, also revert the source
2429 # if f is a rename, also revert the source
2420 cwd = repo.getcwd()
2430 cwd = repo.getcwd()
2421 for f in added:
2431 for f in added:
2422 src = repo.dirstate.copied(f)
2432 src = repo.dirstate.copied(f)
2423 if src and src not in names and repo.dirstate[src] == 'r':
2433 if src and src not in names and repo.dirstate[src] == 'r':
2424 removed[src] = None
2434 removed[src] = None
2425 names[src] = (repo.pathto(src, cwd), True)
2435 names[src] = (repo.pathto(src, cwd), True)
2426
2436
2427 def removeforget(abs):
2437 def removeforget(abs):
2428 if repo.dirstate[abs] == 'a':
2438 if repo.dirstate[abs] == 'a':
2429 return _('forgetting %s\n')
2439 return _('forgetting %s\n')
2430 return _('removing %s\n')
2440 return _('removing %s\n')
2431
2441
2432 revert = ([], _('reverting %s\n'))
2442 revert = ([], _('reverting %s\n'))
2433 add = ([], _('adding %s\n'))
2443 add = ([], _('adding %s\n'))
2434 remove = ([], removeforget)
2444 remove = ([], removeforget)
2435 undelete = ([], _('undeleting %s\n'))
2445 undelete = ([], _('undeleting %s\n'))
2436
2446
2437 disptable = (
2447 disptable = (
2438 # dispatch table:
2448 # dispatch table:
2439 # file state
2449 # file state
2440 # action if in target manifest
2450 # action if in target manifest
2441 # action if not in target manifest
2451 # action if not in target manifest
2442 # make backup if in target manifest
2452 # make backup if in target manifest
2443 # make backup if not in target manifest
2453 # make backup if not in target manifest
2444 (modified, revert, remove, True, True),
2454 (modified, revert, remove, True, True),
2445 (added, revert, remove, True, False),
2455 (added, revert, remove, True, False),
2446 (removed, undelete, None, False, False),
2456 (removed, undelete, None, False, False),
2447 (deleted, revert, remove, False, False),
2457 (deleted, revert, remove, False, False),
2448 )
2458 )
2449
2459
2450 for abs, (rel, exact) in util.sort(names.items()):
2460 for abs, (rel, exact) in util.sort(names.items()):
2451 mfentry = mf.get(abs)
2461 mfentry = mf.get(abs)
2452 target = repo.wjoin(abs)
2462 target = repo.wjoin(abs)
2453 def handle(xlist, dobackup):
2463 def handle(xlist, dobackup):
2454 xlist[0].append(abs)
2464 xlist[0].append(abs)
2455 if dobackup and not opts.get('no_backup') and util.lexists(target):
2465 if dobackup and not opts.get('no_backup') and util.lexists(target):
2456 bakname = "%s.orig" % rel
2466 bakname = "%s.orig" % rel
2457 ui.note(_('saving current version of %s as %s\n') %
2467 ui.note(_('saving current version of %s as %s\n') %
2458 (rel, bakname))
2468 (rel, bakname))
2459 if not opts.get('dry_run'):
2469 if not opts.get('dry_run'):
2460 util.copyfile(target, bakname)
2470 util.copyfile(target, bakname)
2461 if ui.verbose or not exact:
2471 if ui.verbose or not exact:
2462 msg = xlist[1]
2472 msg = xlist[1]
2463 if not isinstance(msg, basestring):
2473 if not isinstance(msg, basestring):
2464 msg = msg(abs)
2474 msg = msg(abs)
2465 ui.status(msg % rel)
2475 ui.status(msg % rel)
2466 for table, hitlist, misslist, backuphit, backupmiss in disptable:
2476 for table, hitlist, misslist, backuphit, backupmiss in disptable:
2467 if abs not in table: continue
2477 if abs not in table: continue
2468 # file has changed in dirstate
2478 # file has changed in dirstate
2469 if mfentry:
2479 if mfentry:
2470 handle(hitlist, backuphit)
2480 handle(hitlist, backuphit)
2471 elif misslist is not None:
2481 elif misslist is not None:
2472 handle(misslist, backupmiss)
2482 handle(misslist, backupmiss)
2473 break
2483 break
2474 else:
2484 else:
2475 if abs not in repo.dirstate:
2485 if abs not in repo.dirstate:
2476 if mfentry:
2486 if mfentry:
2477 handle(add, True)
2487 handle(add, True)
2478 elif exact:
2488 elif exact:
2479 ui.warn(_('file not managed: %s\n') % rel)
2489 ui.warn(_('file not managed: %s\n') % rel)
2480 continue
2490 continue
2481 # file has not changed in dirstate
2491 # file has not changed in dirstate
2482 if node == parent:
2492 if node == parent:
2483 if exact: ui.warn(_('no changes needed to %s\n') % rel)
2493 if exact: ui.warn(_('no changes needed to %s\n') % rel)
2484 continue
2494 continue
2485 if pmf is None:
2495 if pmf is None:
2486 # only need parent manifest in this unlikely case,
2496 # only need parent manifest in this unlikely case,
2487 # so do not read by default
2497 # so do not read by default
2488 pmf = repo[parent].manifest()
2498 pmf = repo[parent].manifest()
2489 if abs in pmf:
2499 if abs in pmf:
2490 if mfentry:
2500 if mfentry:
2491 # if version of file is same in parent and target
2501 # if version of file is same in parent and target
2492 # manifests, do nothing
2502 # manifests, do nothing
2493 if (pmf[abs] != mfentry or
2503 if (pmf[abs] != mfentry or
2494 pmf.flags(abs) != mf.flags(abs)):
2504 pmf.flags(abs) != mf.flags(abs)):
2495 handle(revert, False)
2505 handle(revert, False)
2496 else:
2506 else:
2497 handle(remove, False)
2507 handle(remove, False)
2498
2508
2499 if not opts.get('dry_run'):
2509 if not opts.get('dry_run'):
2500 def checkout(f):
2510 def checkout(f):
2501 fc = ctx[f]
2511 fc = ctx[f]
2502 repo.wwrite(f, fc.data(), fc.flags())
2512 repo.wwrite(f, fc.data(), fc.flags())
2503
2513
2504 audit_path = util.path_auditor(repo.root)
2514 audit_path = util.path_auditor(repo.root)
2505 for f in remove[0]:
2515 for f in remove[0]:
2506 if repo.dirstate[f] == 'a':
2516 if repo.dirstate[f] == 'a':
2507 repo.dirstate.forget(f)
2517 repo.dirstate.forget(f)
2508 continue
2518 continue
2509 audit_path(f)
2519 audit_path(f)
2510 try:
2520 try:
2511 util.unlink(repo.wjoin(f))
2521 util.unlink(repo.wjoin(f))
2512 except OSError:
2522 except OSError:
2513 pass
2523 pass
2514 repo.dirstate.remove(f)
2524 repo.dirstate.remove(f)
2515
2525
2516 normal = None
2526 normal = None
2517 if node == parent:
2527 if node == parent:
2518 # We're reverting to our parent. If possible, we'd like status
2528 # We're reverting to our parent. If possible, we'd like status
2519 # to report the file as clean. We have to use normallookup for
2529 # to report the file as clean. We have to use normallookup for
2520 # merges to avoid losing information about merged/dirty files.
2530 # merges to avoid losing information about merged/dirty files.
2521 if p2 != nullid:
2531 if p2 != nullid:
2522 normal = repo.dirstate.normallookup
2532 normal = repo.dirstate.normallookup
2523 else:
2533 else:
2524 normal = repo.dirstate.normal
2534 normal = repo.dirstate.normal
2525 for f in revert[0]:
2535 for f in revert[0]:
2526 checkout(f)
2536 checkout(f)
2527 if normal:
2537 if normal:
2528 normal(f)
2538 normal(f)
2529
2539
2530 for f in add[0]:
2540 for f in add[0]:
2531 checkout(f)
2541 checkout(f)
2532 repo.dirstate.add(f)
2542 repo.dirstate.add(f)
2533
2543
2534 normal = repo.dirstate.normallookup
2544 normal = repo.dirstate.normallookup
2535 if node == parent and p2 == nullid:
2545 if node == parent and p2 == nullid:
2536 normal = repo.dirstate.normal
2546 normal = repo.dirstate.normal
2537 for f in undelete[0]:
2547 for f in undelete[0]:
2538 checkout(f)
2548 checkout(f)
2539 normal(f)
2549 normal(f)
2540
2550
2541 finally:
2551 finally:
2542 del wlock
2552 del wlock
2543
2553
2544 def rollback(ui, repo):
2554 def rollback(ui, repo):
2545 """roll back the last transaction
2555 """roll back the last transaction
2546
2556
2547 This command should be used with care. There is only one level of
2557 This command should be used with care. There is only one level of
2548 rollback, and there is no way to undo a rollback. It will also
2558 rollback, and there is no way to undo a rollback. It will also
2549 restore the dirstate at the time of the last transaction, losing
2559 restore the dirstate at the time of the last transaction, losing
2550 any dirstate changes since that time.
2560 any dirstate changes since that time.
2551
2561
2552 Transactions are used to encapsulate the effects of all commands
2562 Transactions are used to encapsulate the effects of all commands
2553 that create new changesets or propagate existing changesets into a
2563 that create new changesets or propagate existing changesets into a
2554 repository. For example, the following commands are transactional,
2564 repository. For example, the following commands are transactional,
2555 and their effects can be rolled back:
2565 and their effects can be rolled back:
2556
2566
2557 commit
2567 commit
2558 import
2568 import
2559 pull
2569 pull
2560 push (with this repository as destination)
2570 push (with this repository as destination)
2561 unbundle
2571 unbundle
2562
2572
2563 This command is not intended for use on public repositories. Once
2573 This command is not intended for use on public repositories. Once
2564 changes are visible for pull by other users, rolling a transaction
2574 changes are visible for pull by other users, rolling a transaction
2565 back locally is ineffective (someone else may already have pulled
2575 back locally is ineffective (someone else may already have pulled
2566 the changes). Furthermore, a race is possible with readers of the
2576 the changes). Furthermore, a race is possible with readers of the
2567 repository; for example an in-progress pull from the repository
2577 repository; for example an in-progress pull from the repository
2568 may fail if a rollback is performed.
2578 may fail if a rollback is performed.
2569 """
2579 """
2570 repo.rollback()
2580 repo.rollback()
2571
2581
2572 def root(ui, repo):
2582 def root(ui, repo):
2573 """print the root (top) of the current working dir
2583 """print the root (top) of the current working dir
2574
2584
2575 Print the root directory of the current repository.
2585 Print the root directory of the current repository.
2576 """
2586 """
2577 ui.write(repo.root + "\n")
2587 ui.write(repo.root + "\n")
2578
2588
2579 def serve(ui, repo, **opts):
2589 def serve(ui, repo, **opts):
2580 """export the repository via HTTP
2590 """export the repository via HTTP
2581
2591
2582 Start a local HTTP repository browser and pull server.
2592 Start a local HTTP repository browser and pull server.
2583
2593
2584 By default, the server logs accesses to stdout and errors to
2594 By default, the server logs accesses to stdout and errors to
2585 stderr. Use the "-A" and "-E" options to log to files.
2595 stderr. Use the "-A" and "-E" options to log to files.
2586 """
2596 """
2587
2597
2588 if opts["stdio"]:
2598 if opts["stdio"]:
2589 if repo is None:
2599 if repo is None:
2590 raise RepoError(_("There is no Mercurial repository here"
2600 raise RepoError(_("There is no Mercurial repository here"
2591 " (.hg not found)"))
2601 " (.hg not found)"))
2592 s = sshserver.sshserver(ui, repo)
2602 s = sshserver.sshserver(ui, repo)
2593 s.serve_forever()
2603 s.serve_forever()
2594
2604
2595 parentui = ui.parentui or ui
2605 parentui = ui.parentui or ui
2596 optlist = ("name templates style address port prefix ipv6"
2606 optlist = ("name templates style address port prefix ipv6"
2597 " accesslog errorlog webdir_conf certificate")
2607 " accesslog errorlog webdir_conf certificate")
2598 for o in optlist.split():
2608 for o in optlist.split():
2599 if opts[o]:
2609 if opts[o]:
2600 parentui.setconfig("web", o, str(opts[o]))
2610 parentui.setconfig("web", o, str(opts[o]))
2601 if (repo is not None) and (repo.ui != parentui):
2611 if (repo is not None) and (repo.ui != parentui):
2602 repo.ui.setconfig("web", o, str(opts[o]))
2612 repo.ui.setconfig("web", o, str(opts[o]))
2603
2613
2604 if repo is None and not ui.config("web", "webdir_conf"):
2614 if repo is None and not ui.config("web", "webdir_conf"):
2605 raise RepoError(_("There is no Mercurial repository here"
2615 raise RepoError(_("There is no Mercurial repository here"
2606 " (.hg not found)"))
2616 " (.hg not found)"))
2607
2617
2608 class service:
2618 class service:
2609 def init(self):
2619 def init(self):
2610 util.set_signal_handler()
2620 util.set_signal_handler()
2611 self.httpd = hgweb.server.create_server(parentui, repo)
2621 self.httpd = hgweb.server.create_server(parentui, repo)
2612
2622
2613 if not ui.verbose: return
2623 if not ui.verbose: return
2614
2624
2615 if self.httpd.prefix:
2625 if self.httpd.prefix:
2616 prefix = self.httpd.prefix.strip('/') + '/'
2626 prefix = self.httpd.prefix.strip('/') + '/'
2617 else:
2627 else:
2618 prefix = ''
2628 prefix = ''
2619
2629
2620 port = ':%d' % self.httpd.port
2630 port = ':%d' % self.httpd.port
2621 if port == ':80':
2631 if port == ':80':
2622 port = ''
2632 port = ''
2623
2633
2624 bindaddr = self.httpd.addr
2634 bindaddr = self.httpd.addr
2625 if bindaddr == '0.0.0.0':
2635 if bindaddr == '0.0.0.0':
2626 bindaddr = '*'
2636 bindaddr = '*'
2627 elif ':' in bindaddr: # IPv6
2637 elif ':' in bindaddr: # IPv6
2628 bindaddr = '[%s]' % bindaddr
2638 bindaddr = '[%s]' % bindaddr
2629
2639
2630 fqaddr = self.httpd.fqaddr
2640 fqaddr = self.httpd.fqaddr
2631 if ':' in fqaddr:
2641 if ':' in fqaddr:
2632 fqaddr = '[%s]' % fqaddr
2642 fqaddr = '[%s]' % fqaddr
2633 ui.status(_('listening at http://%s%s/%s (bound to %s:%d)\n') %
2643 ui.status(_('listening at http://%s%s/%s (bound to %s:%d)\n') %
2634 (fqaddr, port, prefix, bindaddr, self.httpd.port))
2644 (fqaddr, port, prefix, bindaddr, self.httpd.port))
2635
2645
2636 def run(self):
2646 def run(self):
2637 self.httpd.serve_forever()
2647 self.httpd.serve_forever()
2638
2648
2639 service = service()
2649 service = service()
2640
2650
2641 cmdutil.service(opts, initfn=service.init, runfn=service.run)
2651 cmdutil.service(opts, initfn=service.init, runfn=service.run)
2642
2652
2643 def status(ui, repo, *pats, **opts):
2653 def status(ui, repo, *pats, **opts):
2644 """show changed files in the working directory
2654 """show changed files in the working directory
2645
2655
2646 Show status of files in the repository. If names are given, only
2656 Show status of files in the repository. If names are given, only
2647 files that match are shown. Files that are clean or ignored or
2657 files that match are shown. Files that are clean or ignored or
2648 source of a copy/move operation, are not listed unless -c (clean),
2658 source of a copy/move operation, are not listed unless -c (clean),
2649 -i (ignored), -C (copies) or -A is given. Unless options described
2659 -i (ignored), -C (copies) or -A is given. Unless options described
2650 with "show only ..." are given, the options -mardu are used.
2660 with "show only ..." are given, the options -mardu are used.
2651
2661
2652 Option -q/--quiet hides untracked (unknown and ignored) files
2662 Option -q/--quiet hides untracked (unknown and ignored) files
2653 unless explicitly requested with -u/--unknown or -i/-ignored.
2663 unless explicitly requested with -u/--unknown or -i/-ignored.
2654
2664
2655 NOTE: status may appear to disagree with diff if permissions have
2665 NOTE: status may appear to disagree with diff if permissions have
2656 changed or a merge has occurred. The standard diff format does not
2666 changed or a merge has occurred. The standard diff format does not
2657 report permission changes and diff only reports changes relative
2667 report permission changes and diff only reports changes relative
2658 to one merge parent.
2668 to one merge parent.
2659
2669
2660 If one revision is given, it is used as the base revision.
2670 If one revision is given, it is used as the base revision.
2661 If two revisions are given, the difference between them is shown.
2671 If two revisions are given, the difference between them is shown.
2662
2672
2663 The codes used to show the status of files are:
2673 The codes used to show the status of files are:
2664 M = modified
2674 M = modified
2665 A = added
2675 A = added
2666 R = removed
2676 R = removed
2667 C = clean
2677 C = clean
2668 ! = deleted, but still tracked
2678 ! = deleted, but still tracked
2669 ? = not tracked
2679 ? = not tracked
2670 I = ignored
2680 I = ignored
2671 = the previous added file was copied from here
2681 = the previous added file was copied from here
2672 """
2682 """
2673
2683
2674 node1, node2 = cmdutil.revpair(repo, opts.get('rev'))
2684 node1, node2 = cmdutil.revpair(repo, opts.get('rev'))
2675 cwd = (pats and repo.getcwd()) or ''
2685 cwd = (pats and repo.getcwd()) or ''
2676 end = opts.get('print0') and '\0' or '\n'
2686 end = opts.get('print0') and '\0' or '\n'
2677 copy = {}
2687 copy = {}
2678 states = 'modified added removed deleted unknown ignored clean'.split()
2688 states = 'modified added removed deleted unknown ignored clean'.split()
2679 show = [k for k in states if opts[k]]
2689 show = [k for k in states if opts[k]]
2680 if opts.get('all'):
2690 if opts.get('all'):
2681 show += ui.quiet and (states[:4] + ['clean']) or states
2691 show += ui.quiet and (states[:4] + ['clean']) or states
2682 if not show:
2692 if not show:
2683 show = ui.quiet and states[:4] or states[:5]
2693 show = ui.quiet and states[:4] or states[:5]
2684
2694
2685 stat = repo.status(node1, node2, cmdutil.match(repo, pats, opts),
2695 stat = repo.status(node1, node2, cmdutil.match(repo, pats, opts),
2686 'ignored' in show, 'clean' in show, 'unknown' in show)
2696 'ignored' in show, 'clean' in show, 'unknown' in show)
2687 changestates = zip(states, 'MAR!?IC', stat)
2697 changestates = zip(states, 'MAR!?IC', stat)
2688
2698
2689 if (opts.get('all') or opts.get('copies')) and not opts.get('no_status'):
2699 if (opts.get('all') or opts.get('copies')) and not opts.get('no_status'):
2690 ctxn = repo[nullid]
2700 ctxn = repo[nullid]
2691 ctx1 = repo[node1]
2701 ctx1 = repo[node1]
2692 ctx2 = repo[node2]
2702 ctx2 = repo[node2]
2693 added = stat[1]
2703 added = stat[1]
2694 if node2 is None:
2704 if node2 is None:
2695 added = stat[0] + stat[1] # merged?
2705 added = stat[0] + stat[1] # merged?
2696
2706
2697 for k, v in copies.copies(repo, ctx1, ctx2, ctxn)[0].items():
2707 for k, v in copies.copies(repo, ctx1, ctx2, ctxn)[0].items():
2698 if k in added:
2708 if k in added:
2699 copy[k] = v
2709 copy[k] = v
2700 elif v in added:
2710 elif v in added:
2701 copy[v] = k
2711 copy[v] = k
2702
2712
2703 for state, char, files in changestates:
2713 for state, char, files in changestates:
2704 if state in show:
2714 if state in show:
2705 format = "%s %%s%s" % (char, end)
2715 format = "%s %%s%s" % (char, end)
2706 if opts.get('no_status'):
2716 if opts.get('no_status'):
2707 format = "%%s%s" % end
2717 format = "%%s%s" % end
2708
2718
2709 for f in files:
2719 for f in files:
2710 ui.write(format % repo.pathto(f, cwd))
2720 ui.write(format % repo.pathto(f, cwd))
2711 if f in copy:
2721 if f in copy:
2712 ui.write(' %s%s' % (repo.pathto(copy[f], cwd), end))
2722 ui.write(' %s%s' % (repo.pathto(copy[f], cwd), end))
2713
2723
2714 def tag(ui, repo, name1, *names, **opts):
2724 def tag(ui, repo, name1, *names, **opts):
2715 """add one or more tags for the current or given revision
2725 """add one or more tags for the current or given revision
2716
2726
2717 Name a particular revision using <name>.
2727 Name a particular revision using <name>.
2718
2728
2719 Tags are used to name particular revisions of the repository and are
2729 Tags are used to name particular revisions of the repository and are
2720 very useful to compare different revisions, to go back to significant
2730 very useful to compare different revisions, to go back to significant
2721 earlier versions or to mark branch points as releases, etc.
2731 earlier versions or to mark branch points as releases, etc.
2722
2732
2723 If no revision is given, the parent of the working directory is used,
2733 If no revision is given, the parent of the working directory is used,
2724 or tip if no revision is checked out.
2734 or tip if no revision is checked out.
2725
2735
2726 To facilitate version control, distribution, and merging of tags,
2736 To facilitate version control, distribution, and merging of tags,
2727 they are stored as a file named ".hgtags" which is managed
2737 they are stored as a file named ".hgtags" which is managed
2728 similarly to other project files and can be hand-edited if
2738 similarly to other project files and can be hand-edited if
2729 necessary. The file '.hg/localtags' is used for local tags (not
2739 necessary. The file '.hg/localtags' is used for local tags (not
2730 shared among repositories).
2740 shared among repositories).
2731
2741
2732 See 'hg help dates' for a list of formats valid for -d/--date.
2742 See 'hg help dates' for a list of formats valid for -d/--date.
2733 """
2743 """
2734
2744
2735 rev_ = "."
2745 rev_ = "."
2736 names = (name1,) + names
2746 names = (name1,) + names
2737 if len(names) != len(dict.fromkeys(names)):
2747 if len(names) != len(dict.fromkeys(names)):
2738 raise util.Abort(_('tag names must be unique'))
2748 raise util.Abort(_('tag names must be unique'))
2739 for n in names:
2749 for n in names:
2740 if n in ['tip', '.', 'null']:
2750 if n in ['tip', '.', 'null']:
2741 raise util.Abort(_('the name \'%s\' is reserved') % n)
2751 raise util.Abort(_('the name \'%s\' is reserved') % n)
2742 if opts.get('rev') and opts.get('remove'):
2752 if opts.get('rev') and opts.get('remove'):
2743 raise util.Abort(_("--rev and --remove are incompatible"))
2753 raise util.Abort(_("--rev and --remove are incompatible"))
2744 if opts.get('rev'):
2754 if opts.get('rev'):
2745 rev_ = opts['rev']
2755 rev_ = opts['rev']
2746 message = opts.get('message')
2756 message = opts.get('message')
2747 if opts.get('remove'):
2757 if opts.get('remove'):
2748 expectedtype = opts.get('local') and 'local' or 'global'
2758 expectedtype = opts.get('local') and 'local' or 'global'
2749 for n in names:
2759 for n in names:
2750 if not repo.tagtype(n):
2760 if not repo.tagtype(n):
2751 raise util.Abort(_('tag \'%s\' does not exist') % n)
2761 raise util.Abort(_('tag \'%s\' does not exist') % n)
2752 if repo.tagtype(n) != expectedtype:
2762 if repo.tagtype(n) != expectedtype:
2753 raise util.Abort(_('tag \'%s\' is not a %s tag') %
2763 raise util.Abort(_('tag \'%s\' is not a %s tag') %
2754 (n, expectedtype))
2764 (n, expectedtype))
2755 rev_ = nullid
2765 rev_ = nullid
2756 if not message:
2766 if not message:
2757 message = _('Removed tag %s') % ', '.join(names)
2767 message = _('Removed tag %s') % ', '.join(names)
2758 elif not opts.get('force'):
2768 elif not opts.get('force'):
2759 for n in names:
2769 for n in names:
2760 if n in repo.tags():
2770 if n in repo.tags():
2761 raise util.Abort(_('tag \'%s\' already exists '
2771 raise util.Abort(_('tag \'%s\' already exists '
2762 '(use -f to force)') % n)
2772 '(use -f to force)') % n)
2763 if not rev_ and repo.dirstate.parents()[1] != nullid:
2773 if not rev_ and repo.dirstate.parents()[1] != nullid:
2764 raise util.Abort(_('uncommitted merge - please provide a '
2774 raise util.Abort(_('uncommitted merge - please provide a '
2765 'specific revision'))
2775 'specific revision'))
2766 r = repo[rev_].node()
2776 r = repo[rev_].node()
2767
2777
2768 if not message:
2778 if not message:
2769 message = (_('Added tag %s for changeset %s') %
2779 message = (_('Added tag %s for changeset %s') %
2770 (', '.join(names), short(r)))
2780 (', '.join(names), short(r)))
2771
2781
2772 date = opts.get('date')
2782 date = opts.get('date')
2773 if date:
2783 if date:
2774 date = util.parsedate(date)
2784 date = util.parsedate(date)
2775
2785
2776 repo.tag(names, r, message, opts.get('local'), opts.get('user'), date)
2786 repo.tag(names, r, message, opts.get('local'), opts.get('user'), date)
2777
2787
2778 def tags(ui, repo):
2788 def tags(ui, repo):
2779 """list repository tags
2789 """list repository tags
2780
2790
2781 List the repository tags.
2791 List the repository tags.
2782
2792
2783 This lists both regular and local tags. When the -v/--verbose switch
2793 This lists both regular and local tags. When the -v/--verbose switch
2784 is used, a third column "local" is printed for local tags.
2794 is used, a third column "local" is printed for local tags.
2785 """
2795 """
2786
2796
2787 l = repo.tagslist()
2797 l = repo.tagslist()
2788 l.reverse()
2798 l.reverse()
2789 hexfunc = ui.debugflag and hex or short
2799 hexfunc = ui.debugflag and hex or short
2790 tagtype = ""
2800 tagtype = ""
2791
2801
2792 for t, n in l:
2802 for t, n in l:
2793 if ui.quiet:
2803 if ui.quiet:
2794 ui.write("%s\n" % t)
2804 ui.write("%s\n" % t)
2795 continue
2805 continue
2796
2806
2797 try:
2807 try:
2798 hn = hexfunc(n)
2808 hn = hexfunc(n)
2799 r = "%5d:%s" % (repo.changelog.rev(n), hn)
2809 r = "%5d:%s" % (repo.changelog.rev(n), hn)
2800 except revlog.LookupError:
2810 except revlog.LookupError:
2801 r = " ?:%s" % hn
2811 r = " ?:%s" % hn
2802 else:
2812 else:
2803 spaces = " " * (30 - util.locallen(t))
2813 spaces = " " * (30 - util.locallen(t))
2804 if ui.verbose:
2814 if ui.verbose:
2805 if repo.tagtype(t) == 'local':
2815 if repo.tagtype(t) == 'local':
2806 tagtype = " local"
2816 tagtype = " local"
2807 else:
2817 else:
2808 tagtype = ""
2818 tagtype = ""
2809 ui.write("%s%s %s%s\n" % (t, spaces, r, tagtype))
2819 ui.write("%s%s %s%s\n" % (t, spaces, r, tagtype))
2810
2820
2811 def tip(ui, repo, **opts):
2821 def tip(ui, repo, **opts):
2812 """show the tip revision
2822 """show the tip revision
2813
2823
2814 The tip revision (usually just called the tip) is the most
2824 The tip revision (usually just called the tip) is the most
2815 recently added changeset in the repository, the most recently
2825 recently added changeset in the repository, the most recently
2816 changed head.
2826 changed head.
2817
2827
2818 If you have just made a commit, that commit will be the tip. If
2828 If you have just made a commit, that commit will be the tip. If
2819 you have just pulled changes from another repository, the tip of
2829 you have just pulled changes from another repository, the tip of
2820 that repository becomes the current tip. The "tip" tag is special
2830 that repository becomes the current tip. The "tip" tag is special
2821 and cannot be renamed or assigned to a different changeset.
2831 and cannot be renamed or assigned to a different changeset.
2822 """
2832 """
2823 cmdutil.show_changeset(ui, repo, opts).show(len(repo) - 1)
2833 cmdutil.show_changeset(ui, repo, opts).show(len(repo) - 1)
2824
2834
2825 def unbundle(ui, repo, fname1, *fnames, **opts):
2835 def unbundle(ui, repo, fname1, *fnames, **opts):
2826 """apply one or more changegroup files
2836 """apply one or more changegroup files
2827
2837
2828 Apply one or more compressed changegroup files generated by the
2838 Apply one or more compressed changegroup files generated by the
2829 bundle command.
2839 bundle command.
2830 """
2840 """
2831 fnames = (fname1,) + fnames
2841 fnames = (fname1,) + fnames
2832
2842
2833 lock = None
2843 lock = None
2834 try:
2844 try:
2835 lock = repo.lock()
2845 lock = repo.lock()
2836 for fname in fnames:
2846 for fname in fnames:
2837 if os.path.exists(fname):
2847 if os.path.exists(fname):
2838 f = open(fname, "rb")
2848 f = open(fname, "rb")
2839 else:
2849 else:
2840 f = urllib.urlopen(fname)
2850 f = urllib.urlopen(fname)
2841 gen = changegroup.readbundle(f, fname)
2851 gen = changegroup.readbundle(f, fname)
2842 modheads = repo.addchangegroup(gen, 'unbundle', 'bundle:' + fname)
2852 modheads = repo.addchangegroup(gen, 'unbundle', 'bundle:' + fname)
2843 finally:
2853 finally:
2844 del lock
2854 del lock
2845
2855
2846 return postincoming(ui, repo, modheads, opts.get('update'), None)
2856 return postincoming(ui, repo, modheads, opts.get('update'), None)
2847
2857
2848 def update(ui, repo, node=None, rev=None, clean=False, date=None):
2858 def update(ui, repo, node=None, rev=None, clean=False, date=None):
2849 """update working directory
2859 """update working directory
2850
2860
2851 Update the repository's working directory to the specified revision,
2861 Update the repository's working directory to the specified revision,
2852 or the tip of the current branch if none is specified. Use null as
2862 or the tip of the current branch if none is specified. Use null as
2853 the revision to remove the working copy (like 'hg clone -U').
2863 the revision to remove the working copy (like 'hg clone -U').
2854
2864
2855 If the requested revision is a descendant of the working
2865 If the requested revision is a descendant of the working
2856 directory, any outstanding changes in the working directory will
2866 directory, any outstanding changes in the working directory will
2857 be merged into the result. If it is not directly descended but is
2867 be merged into the result. If it is not directly descended but is
2858 on the same named branch, update aborts with a suggestion to use
2868 on the same named branch, update aborts with a suggestion to use
2859 merge or update -C instead.
2869 merge or update -C instead.
2860
2870
2861 If the requested revision is on a different named branch and the
2871 If the requested revision is on a different named branch and the
2862 working directory is clean, update quietly switches branches.
2872 working directory is clean, update quietly switches branches.
2863
2873
2864 If you want to update just one file to an older revision, use revert.
2874 If you want to update just one file to an older revision, use revert.
2865
2875
2866 See 'hg help dates' for a list of formats valid for --date.
2876 See 'hg help dates' for a list of formats valid for --date.
2867 """
2877 """
2868 if rev and node:
2878 if rev and node:
2869 raise util.Abort(_("please specify just one revision"))
2879 raise util.Abort(_("please specify just one revision"))
2870
2880
2871 if not rev:
2881 if not rev:
2872 rev = node
2882 rev = node
2873
2883
2874 if date:
2884 if date:
2875 if rev:
2885 if rev:
2876 raise util.Abort(_("you can't specify a revision and a date"))
2886 raise util.Abort(_("you can't specify a revision and a date"))
2877 rev = cmdutil.finddate(ui, repo, date)
2887 rev = cmdutil.finddate(ui, repo, date)
2878
2888
2879 if clean:
2889 if clean:
2880 return hg.clean(repo, rev)
2890 return hg.clean(repo, rev)
2881 else:
2891 else:
2882 return hg.update(repo, rev)
2892 return hg.update(repo, rev)
2883
2893
2884 def verify(ui, repo):
2894 def verify(ui, repo):
2885 """verify the integrity of the repository
2895 """verify the integrity of the repository
2886
2896
2887 Verify the integrity of the current repository.
2897 Verify the integrity of the current repository.
2888
2898
2889 This will perform an extensive check of the repository's
2899 This will perform an extensive check of the repository's
2890 integrity, validating the hashes and checksums of each entry in
2900 integrity, validating the hashes and checksums of each entry in
2891 the changelog, manifest, and tracked files, as well as the
2901 the changelog, manifest, and tracked files, as well as the
2892 integrity of their crosslinks and indices.
2902 integrity of their crosslinks and indices.
2893 """
2903 """
2894 return hg.verify(repo)
2904 return hg.verify(repo)
2895
2905
2896 def version_(ui):
2906 def version_(ui):
2897 """output version and copyright information"""
2907 """output version and copyright information"""
2898 ui.write(_("Mercurial Distributed SCM (version %s)\n")
2908 ui.write(_("Mercurial Distributed SCM (version %s)\n")
2899 % version.get_version())
2909 % version.get_version())
2900 ui.status(_(
2910 ui.status(_(
2901 "\nCopyright (C) 2005-2008 Matt Mackall <mpm@selenic.com> and others\n"
2911 "\nCopyright (C) 2005-2008 Matt Mackall <mpm@selenic.com> and others\n"
2902 "This is free software; see the source for copying conditions. "
2912 "This is free software; see the source for copying conditions. "
2903 "There is NO\nwarranty; "
2913 "There is NO\nwarranty; "
2904 "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
2914 "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
2905 ))
2915 ))
2906
2916
2907 # Command options and aliases are listed here, alphabetically
2917 # Command options and aliases are listed here, alphabetically
2908
2918
2909 globalopts = [
2919 globalopts = [
2910 ('R', 'repository', '',
2920 ('R', 'repository', '',
2911 _('repository root directory or symbolic path name')),
2921 _('repository root directory or symbolic path name')),
2912 ('', 'cwd', '', _('change working directory')),
2922 ('', 'cwd', '', _('change working directory')),
2913 ('y', 'noninteractive', None,
2923 ('y', 'noninteractive', None,
2914 _('do not prompt, assume \'yes\' for any required answers')),
2924 _('do not prompt, assume \'yes\' for any required answers')),
2915 ('q', 'quiet', None, _('suppress output')),
2925 ('q', 'quiet', None, _('suppress output')),
2916 ('v', 'verbose', None, _('enable additional output')),
2926 ('v', 'verbose', None, _('enable additional output')),
2917 ('', 'config', [], _('set/override config option')),
2927 ('', 'config', [], _('set/override config option')),
2918 ('', 'debug', None, _('enable debugging output')),
2928 ('', 'debug', None, _('enable debugging output')),
2919 ('', 'debugger', None, _('start debugger')),
2929 ('', 'debugger', None, _('start debugger')),
2920 ('', 'encoding', util._encoding, _('set the charset encoding')),
2930 ('', 'encoding', util._encoding, _('set the charset encoding')),
2921 ('', 'encodingmode', util._encodingmode, _('set the charset encoding mode')),
2931 ('', 'encodingmode', util._encodingmode, _('set the charset encoding mode')),
2922 ('', 'lsprof', None, _('print improved command execution profile')),
2932 ('', 'lsprof', None, _('print improved command execution profile')),
2923 ('', 'traceback', None, _('print traceback on exception')),
2933 ('', 'traceback', None, _('print traceback on exception')),
2924 ('', 'time', None, _('time how long the command takes')),
2934 ('', 'time', None, _('time how long the command takes')),
2925 ('', 'profile', None, _('print command execution profile')),
2935 ('', 'profile', None, _('print command execution profile')),
2926 ('', 'version', None, _('output version information and exit')),
2936 ('', 'version', None, _('output version information and exit')),
2927 ('h', 'help', None, _('display help and exit')),
2937 ('h', 'help', None, _('display help and exit')),
2928 ]
2938 ]
2929
2939
2930 dryrunopts = [('n', 'dry-run', None,
2940 dryrunopts = [('n', 'dry-run', None,
2931 _('do not perform actions, just print output'))]
2941 _('do not perform actions, just print output'))]
2932
2942
2933 remoteopts = [
2943 remoteopts = [
2934 ('e', 'ssh', '', _('specify ssh command to use')),
2944 ('e', 'ssh', '', _('specify ssh command to use')),
2935 ('', 'remotecmd', '', _('specify hg command to run on the remote side')),
2945 ('', 'remotecmd', '', _('specify hg command to run on the remote side')),
2936 ]
2946 ]
2937
2947
2938 walkopts = [
2948 walkopts = [
2939 ('I', 'include', [], _('include names matching the given patterns')),
2949 ('I', 'include', [], _('include names matching the given patterns')),
2940 ('X', 'exclude', [], _('exclude names matching the given patterns')),
2950 ('X', 'exclude', [], _('exclude names matching the given patterns')),
2941 ]
2951 ]
2942
2952
2943 commitopts = [
2953 commitopts = [
2944 ('m', 'message', '', _('use <text> as commit message')),
2954 ('m', 'message', '', _('use <text> as commit message')),
2945 ('l', 'logfile', '', _('read commit message from <file>')),
2955 ('l', 'logfile', '', _('read commit message from <file>')),
2946 ]
2956 ]
2947
2957
2948 commitopts2 = [
2958 commitopts2 = [
2949 ('d', 'date', '', _('record datecode as commit date')),
2959 ('d', 'date', '', _('record datecode as commit date')),
2950 ('u', 'user', '', _('record user as committer')),
2960 ('u', 'user', '', _('record user as committer')),
2951 ]
2961 ]
2952
2962
2953 templateopts = [
2963 templateopts = [
2954 ('', 'style', '', _('display using template map file')),
2964 ('', 'style', '', _('display using template map file')),
2955 ('', 'template', '', _('display with template')),
2965 ('', 'template', '', _('display with template')),
2956 ]
2966 ]
2957
2967
2958 logopts = [
2968 logopts = [
2959 ('p', 'patch', None, _('show patch')),
2969 ('p', 'patch', None, _('show patch')),
2960 ('l', 'limit', '', _('limit number of changes displayed')),
2970 ('l', 'limit', '', _('limit number of changes displayed')),
2961 ('M', 'no-merges', None, _('do not show merges')),
2971 ('M', 'no-merges', None, _('do not show merges')),
2962 ] + templateopts
2972 ] + templateopts
2963
2973
2964 diffopts = [
2974 diffopts = [
2965 ('a', 'text', None, _('treat all files as text')),
2975 ('a', 'text', None, _('treat all files as text')),
2966 ('g', 'git', None, _('use git extended diff format')),
2976 ('g', 'git', None, _('use git extended diff format')),
2967 ('', 'nodates', None, _("don't include dates in diff headers"))
2977 ('', 'nodates', None, _("don't include dates in diff headers"))
2968 ]
2978 ]
2969
2979
2970 diffopts2 = [
2980 diffopts2 = [
2971 ('p', 'show-function', None, _('show which function each change is in')),
2981 ('p', 'show-function', None, _('show which function each change is in')),
2972 ('w', 'ignore-all-space', None,
2982 ('w', 'ignore-all-space', None,
2973 _('ignore white space when comparing lines')),
2983 _('ignore white space when comparing lines')),
2974 ('b', 'ignore-space-change', None,
2984 ('b', 'ignore-space-change', None,
2975 _('ignore changes in the amount of white space')),
2985 _('ignore changes in the amount of white space')),
2976 ('B', 'ignore-blank-lines', None,
2986 ('B', 'ignore-blank-lines', None,
2977 _('ignore changes whose lines are all blank')),
2987 _('ignore changes whose lines are all blank')),
2978 ('U', 'unified', '', _('number of lines of context to show'))
2988 ('U', 'unified', '', _('number of lines of context to show'))
2979 ]
2989 ]
2980
2990
2981 table = {
2991 table = {
2982 "^add": (add, walkopts + dryrunopts, _('hg add [OPTION]... [FILE]...')),
2992 "^add": (add, walkopts + dryrunopts, _('hg add [OPTION]... [FILE]...')),
2983 "addremove":
2993 "addremove":
2984 (addremove,
2994 (addremove,
2985 [('s', 'similarity', '',
2995 [('s', 'similarity', '',
2986 _('guess renamed files by similarity (0<=s<=100)')),
2996 _('guess renamed files by similarity (0<=s<=100)')),
2987 ] + walkopts + dryrunopts,
2997 ] + walkopts + dryrunopts,
2988 _('hg addremove [OPTION]... [FILE]...')),
2998 _('hg addremove [OPTION]... [FILE]...')),
2989 "^annotate|blame":
2999 "^annotate|blame":
2990 (annotate,
3000 (annotate,
2991 [('r', 'rev', '', _('annotate the specified revision')),
3001 [('r', 'rev', '', _('annotate the specified revision')),
2992 ('f', 'follow', None, _('follow file copies and renames')),
3002 ('f', 'follow', None, _('follow file copies and renames')),
2993 ('a', 'text', None, _('treat all files as text')),
3003 ('a', 'text', None, _('treat all files as text')),
2994 ('u', 'user', None, _('list the author (long with -v)')),
3004 ('u', 'user', None, _('list the author (long with -v)')),
2995 ('d', 'date', None, _('list the date (short with -q)')),
3005 ('d', 'date', None, _('list the date (short with -q)')),
2996 ('n', 'number', None, _('list the revision number (default)')),
3006 ('n', 'number', None, _('list the revision number (default)')),
2997 ('c', 'changeset', None, _('list the changeset')),
3007 ('c', 'changeset', None, _('list the changeset')),
2998 ('l', 'line-number', None,
3008 ('l', 'line-number', None,
2999 _('show line number at the first appearance'))
3009 _('show line number at the first appearance'))
3000 ] + walkopts,
3010 ] + walkopts,
3001 _('hg annotate [-r REV] [-f] [-a] [-u] [-d] [-n] [-c] [-l] FILE...')),
3011 _('hg annotate [-r REV] [-f] [-a] [-u] [-d] [-n] [-c] [-l] FILE...')),
3002 "archive":
3012 "archive":
3003 (archive,
3013 (archive,
3004 [('', 'no-decode', None, _('do not pass files through decoders')),
3014 [('', 'no-decode', None, _('do not pass files through decoders')),
3005 ('p', 'prefix', '', _('directory prefix for files in archive')),
3015 ('p', 'prefix', '', _('directory prefix for files in archive')),
3006 ('r', 'rev', '', _('revision to distribute')),
3016 ('r', 'rev', '', _('revision to distribute')),
3007 ('t', 'type', '', _('type of distribution to create')),
3017 ('t', 'type', '', _('type of distribution to create')),
3008 ] + walkopts,
3018 ] + walkopts,
3009 _('hg archive [OPTION]... DEST')),
3019 _('hg archive [OPTION]... DEST')),
3010 "backout":
3020 "backout":
3011 (backout,
3021 (backout,
3012 [('', 'merge', None,
3022 [('', 'merge', None,
3013 _('merge with old dirstate parent after backout')),
3023 _('merge with old dirstate parent after backout')),
3014 ('', 'parent', '', _('parent to choose when backing out merge')),
3024 ('', 'parent', '', _('parent to choose when backing out merge')),
3015 ('r', 'rev', '', _('revision to backout')),
3025 ('r', 'rev', '', _('revision to backout')),
3016 ] + walkopts + commitopts + commitopts2,
3026 ] + walkopts + commitopts + commitopts2,
3017 _('hg backout [OPTION]... [-r] REV')),
3027 _('hg backout [OPTION]... [-r] REV')),
3018 "bisect":
3028 "bisect":
3019 (bisect,
3029 (bisect,
3020 [('r', 'reset', False, _('reset bisect state')),
3030 [('r', 'reset', False, _('reset bisect state')),
3021 ('g', 'good', False, _('mark changeset good')),
3031 ('g', 'good', False, _('mark changeset good')),
3022 ('b', 'bad', False, _('mark changeset bad')),
3032 ('b', 'bad', False, _('mark changeset bad')),
3023 ('s', 'skip', False, _('skip testing changeset')),
3033 ('s', 'skip', False, _('skip testing changeset')),
3024 ('c', 'command', '', _('Use command to check changeset state')),
3034 ('c', 'command', '', _('Use command to check changeset state')),
3025 ('U', 'noupdate', False, _('do not update to target'))],
3035 ('U', 'noupdate', False, _('do not update to target'))],
3026 _("hg bisect [-gbsr] [REV] [-c COMMAND]")),
3036 _("hg bisect [-gbsr] [REV] [-c COMMAND]")),
3027 "branch":
3037 "branch":
3028 (branch,
3038 (branch,
3029 [('f', 'force', None,
3039 [('f', 'force', None,
3030 _('set branch name even if it shadows an existing branch')),
3040 _('set branch name even if it shadows an existing branch')),
3031 ('C', 'clean', None, _('reset branch name to parent branch name'))],
3041 ('C', 'clean', None, _('reset branch name to parent branch name'))],
3032 _('hg branch [-fC] [NAME]')),
3042 _('hg branch [-fC] [NAME]')),
3033 "branches":
3043 "branches":
3034 (branches,
3044 (branches,
3035 [('a', 'active', False,
3045 [('a', 'active', False,
3036 _('show only branches that have unmerged heads'))],
3046 _('show only branches that have unmerged heads'))],
3037 _('hg branches [-a]')),
3047 _('hg branches [-a]')),
3038 "bundle":
3048 "bundle":
3039 (bundle,
3049 (bundle,
3040 [('f', 'force', None,
3050 [('f', 'force', None,
3041 _('run even when remote repository is unrelated')),
3051 _('run even when remote repository is unrelated')),
3042 ('r', 'rev', [],
3052 ('r', 'rev', [],
3043 _('a changeset up to which you would like to bundle')),
3053 _('a changeset up to which you would like to bundle')),
3044 ('', 'base', [],
3054 ('', 'base', [],
3045 _('a base changeset to specify instead of a destination')),
3055 _('a base changeset to specify instead of a destination')),
3046 ('a', 'all', None, _('bundle all changesets in the repository')),
3056 ('a', 'all', None, _('bundle all changesets in the repository')),
3047 ('t', 'type', 'bzip2', _('bundle compression type to use')),
3057 ('t', 'type', 'bzip2', _('bundle compression type to use')),
3048 ] + remoteopts,
3058 ] + remoteopts,
3049 _('hg bundle [-f] [-a] [-r REV]... [--base REV]... FILE [DEST]')),
3059 _('hg bundle [-f] [-a] [-r REV]... [--base REV]... FILE [DEST]')),
3050 "cat":
3060 "cat":
3051 (cat,
3061 (cat,
3052 [('o', 'output', '', _('print output to file with formatted name')),
3062 [('o', 'output', '', _('print output to file with formatted name')),
3053 ('r', 'rev', '', _('print the given revision')),
3063 ('r', 'rev', '', _('print the given revision')),
3054 ('', 'decode', None, _('apply any matching decode filter')),
3064 ('', 'decode', None, _('apply any matching decode filter')),
3055 ] + walkopts,
3065 ] + walkopts,
3056 _('hg cat [OPTION]... FILE...')),
3066 _('hg cat [OPTION]... FILE...')),
3057 "^clone":
3067 "^clone":
3058 (clone,
3068 (clone,
3059 [('U', 'noupdate', None,
3069 [('U', 'noupdate', None,
3060 _('the clone will only contain a repository (no working copy)')),
3070 _('the clone will only contain a repository (no working copy)')),
3061 ('r', 'rev', [],
3071 ('r', 'rev', [],
3062 _('a changeset you would like to have after cloning')),
3072 _('a changeset you would like to have after cloning')),
3063 ('', 'pull', None, _('use pull protocol to copy metadata')),
3073 ('', 'pull', None, _('use pull protocol to copy metadata')),
3064 ('', 'uncompressed', None,
3074 ('', 'uncompressed', None,
3065 _('use uncompressed transfer (fast over LAN)')),
3075 _('use uncompressed transfer (fast over LAN)')),
3066 ] + remoteopts,
3076 ] + remoteopts,
3067 _('hg clone [OPTION]... SOURCE [DEST]')),
3077 _('hg clone [OPTION]... SOURCE [DEST]')),
3068 "^commit|ci":
3078 "^commit|ci":
3069 (commit,
3079 (commit,
3070 [('A', 'addremove', None,
3080 [('A', 'addremove', None,
3071 _('mark new/missing files as added/removed before committing')),
3081 _('mark new/missing files as added/removed before committing')),
3072 ] + walkopts + commitopts + commitopts2,
3082 ] + walkopts + commitopts + commitopts2,
3073 _('hg commit [OPTION]... [FILE]...')),
3083 _('hg commit [OPTION]... [FILE]...')),
3074 "copy|cp":
3084 "copy|cp":
3075 (copy,
3085 (copy,
3076 [('A', 'after', None, _('record a copy that has already occurred')),
3086 [('A', 'after', None, _('record a copy that has already occurred')),
3077 ('f', 'force', None,
3087 ('f', 'force', None,
3078 _('forcibly copy over an existing managed file')),
3088 _('forcibly copy over an existing managed file')),
3079 ] + walkopts + dryrunopts,
3089 ] + walkopts + dryrunopts,
3080 _('hg copy [OPTION]... [SOURCE]... DEST')),
3090 _('hg copy [OPTION]... [SOURCE]... DEST')),
3081 "debugancestor": (debugancestor, [],
3091 "debugancestor": (debugancestor, [],
3082 _('hg debugancestor [INDEX] REV1 REV2')),
3092 _('hg debugancestor [INDEX] REV1 REV2')),
3083 "debugcheckstate": (debugcheckstate, [], _('hg debugcheckstate')),
3093 "debugcheckstate": (debugcheckstate, [], _('hg debugcheckstate')),
3084 "debugcomplete":
3094 "debugcomplete":
3085 (debugcomplete,
3095 (debugcomplete,
3086 [('o', 'options', None, _('show the command options'))],
3096 [('o', 'options', None, _('show the command options'))],
3087 _('hg debugcomplete [-o] CMD')),
3097 _('hg debugcomplete [-o] CMD')),
3088 "debugdate":
3098 "debugdate":
3089 (debugdate,
3099 (debugdate,
3090 [('e', 'extended', None, _('try extended date formats'))],
3100 [('e', 'extended', None, _('try extended date formats'))],
3091 _('hg debugdate [-e] DATE [RANGE]')),
3101 _('hg debugdate [-e] DATE [RANGE]')),
3092 "debugdata": (debugdata, [], _('hg debugdata FILE REV')),
3102 "debugdata": (debugdata, [], _('hg debugdata FILE REV')),
3093 "debugfsinfo": (debugfsinfo, [], _('hg debugfsinfo [PATH]')),
3103 "debugfsinfo": (debugfsinfo, [], _('hg debugfsinfo [PATH]')),
3094 "debugindex": (debugindex, [], _('hg debugindex FILE')),
3104 "debugindex": (debugindex, [], _('hg debugindex FILE')),
3095 "debugindexdot": (debugindexdot, [], _('hg debugindexdot FILE')),
3105 "debugindexdot": (debugindexdot, [], _('hg debugindexdot FILE')),
3096 "debuginstall": (debuginstall, [], _('hg debuginstall')),
3106 "debuginstall": (debuginstall, [], _('hg debuginstall')),
3097 "debugrawcommit|rawcommit":
3107 "debugrawcommit|rawcommit":
3098 (rawcommit,
3108 (rawcommit,
3099 [('p', 'parent', [], _('parent')),
3109 [('p', 'parent', [], _('parent')),
3100 ('F', 'files', '', _('file list'))
3110 ('F', 'files', '', _('file list'))
3101 ] + commitopts + commitopts2,
3111 ] + commitopts + commitopts2,
3102 _('hg debugrawcommit [OPTION]... [FILE]...')),
3112 _('hg debugrawcommit [OPTION]... [FILE]...')),
3103 "debugrebuildstate":
3113 "debugrebuildstate":
3104 (debugrebuildstate,
3114 (debugrebuildstate,
3105 [('r', 'rev', '', _('revision to rebuild to'))],
3115 [('r', 'rev', '', _('revision to rebuild to'))],
3106 _('hg debugrebuildstate [-r REV] [REV]')),
3116 _('hg debugrebuildstate [-r REV] [REV]')),
3107 "debugrename":
3117 "debugrename":
3108 (debugrename,
3118 (debugrename,
3109 [('r', 'rev', '', _('revision to debug'))],
3119 [('r', 'rev', '', _('revision to debug'))],
3110 _('hg debugrename [-r REV] FILE')),
3120 _('hg debugrename [-r REV] FILE')),
3111 "debugsetparents":
3121 "debugsetparents":
3112 (debugsetparents,
3122 (debugsetparents,
3113 [],
3123 [],
3114 _('hg debugsetparents REV1 [REV2]')),
3124 _('hg debugsetparents REV1 [REV2]')),
3115 "debugstate":
3125 "debugstate":
3116 (debugstate,
3126 (debugstate,
3117 [('', 'nodates', None, _('do not display the saved mtime'))],
3127 [('', 'nodates', None, _('do not display the saved mtime'))],
3118 _('hg debugstate [OPTS]')),
3128 _('hg debugstate [OPTS]')),
3119 "debugwalk": (debugwalk, walkopts, _('hg debugwalk [OPTION]... [FILE]...')),
3129 "debugwalk": (debugwalk, walkopts, _('hg debugwalk [OPTION]... [FILE]...')),
3120 "^diff":
3130 "^diff":
3121 (diff,
3131 (diff,
3122 [('r', 'rev', [], _('revision'))
3132 [('r', 'rev', [], _('revision'))
3123 ] + diffopts + diffopts2 + walkopts,
3133 ] + diffopts + diffopts2 + walkopts,
3124 _('hg diff [OPTION]... [-r REV1 [-r REV2]] [FILE]...')),
3134 _('hg diff [OPTION]... [-r REV1 [-r REV2]] [FILE]...')),
3125 "^export":
3135 "^export":
3126 (export,
3136 (export,
3127 [('o', 'output', '', _('print output to file with formatted name')),
3137 [('o', 'output', '', _('print output to file with formatted name')),
3128 ('', 'switch-parent', None, _('diff against the second parent'))
3138 ('', 'switch-parent', None, _('diff against the second parent'))
3129 ] + diffopts,
3139 ] + diffopts,
3130 _('hg export [OPTION]... [-o OUTFILESPEC] REV...')),
3140 _('hg export [OPTION]... [-o OUTFILESPEC] REV...')),
3131 "grep":
3141 "grep":
3132 (grep,
3142 (grep,
3133 [('0', 'print0', None, _('end fields with NUL')),
3143 [('0', 'print0', None, _('end fields with NUL')),
3134 ('', 'all', None, _('print all revisions that match')),
3144 ('', 'all', None, _('print all revisions that match')),
3135 ('f', 'follow', None,
3145 ('f', 'follow', None,
3136 _('follow changeset history, or file history across copies and renames')),
3146 _('follow changeset history, or file history across copies and renames')),
3137 ('i', 'ignore-case', None, _('ignore case when matching')),
3147 ('i', 'ignore-case', None, _('ignore case when matching')),
3138 ('l', 'files-with-matches', None,
3148 ('l', 'files-with-matches', None,
3139 _('print only filenames and revs that match')),
3149 _('print only filenames and revs that match')),
3140 ('n', 'line-number', None, _('print matching line numbers')),
3150 ('n', 'line-number', None, _('print matching line numbers')),
3141 ('r', 'rev', [], _('search in given revision range')),
3151 ('r', 'rev', [], _('search in given revision range')),
3142 ('u', 'user', None, _('list the author (long with -v)')),
3152 ('u', 'user', None, _('list the author (long with -v)')),
3143 ('d', 'date', None, _('list the date (short with -q)')),
3153 ('d', 'date', None, _('list the date (short with -q)')),
3144 ] + walkopts,
3154 ] + walkopts,
3145 _('hg grep [OPTION]... PATTERN [FILE]...')),
3155 _('hg grep [OPTION]... PATTERN [FILE]...')),
3146 "heads":
3156 "heads":
3147 (heads,
3157 (heads,
3148 [('r', 'rev', '', _('show only heads which are descendants of rev')),
3158 [('r', 'rev', '', _('show only heads which are descendants of rev')),
3149 ] + templateopts,
3159 ] + templateopts,
3150 _('hg heads [-r REV] [REV]...')),
3160 _('hg heads [-r REV] [REV]...')),
3151 "help": (help_, [], _('hg help [TOPIC]')),
3161 "help": (help_, [], _('hg help [TOPIC]')),
3152 "identify|id":
3162 "identify|id":
3153 (identify,
3163 (identify,
3154 [('r', 'rev', '', _('identify the specified rev')),
3164 [('r', 'rev', '', _('identify the specified rev')),
3155 ('n', 'num', None, _('show local revision number')),
3165 ('n', 'num', None, _('show local revision number')),
3156 ('i', 'id', None, _('show global revision id')),
3166 ('i', 'id', None, _('show global revision id')),
3157 ('b', 'branch', None, _('show branch')),
3167 ('b', 'branch', None, _('show branch')),
3158 ('t', 'tags', None, _('show tags'))],
3168 ('t', 'tags', None, _('show tags'))],
3159 _('hg identify [-nibt] [-r REV] [SOURCE]')),
3169 _('hg identify [-nibt] [-r REV] [SOURCE]')),
3160 "import|patch":
3170 "import|patch":
3161 (import_,
3171 (import_,
3162 [('p', 'strip', 1,
3172 [('p', 'strip', 1,
3163 _('directory strip option for patch. This has the same\n'
3173 _('directory strip option for patch. This has the same\n'
3164 'meaning as the corresponding patch option')),
3174 'meaning as the corresponding patch option')),
3165 ('b', 'base', '', _('base path')),
3175 ('b', 'base', '', _('base path')),
3166 ('f', 'force', None,
3176 ('f', 'force', None,
3167 _('skip check for outstanding uncommitted changes')),
3177 _('skip check for outstanding uncommitted changes')),
3168 ('', 'no-commit', None, _("don't commit, just update the working directory")),
3178 ('', 'no-commit', None, _("don't commit, just update the working directory")),
3169 ('', 'exact', None,
3179 ('', 'exact', None,
3170 _('apply patch to the nodes from which it was generated')),
3180 _('apply patch to the nodes from which it was generated')),
3171 ('', 'import-branch', None,
3181 ('', 'import-branch', None,
3172 _('Use any branch information in patch (implied by --exact)'))] +
3182 _('Use any branch information in patch (implied by --exact)'))] +
3173 commitopts + commitopts2,
3183 commitopts + commitopts2,
3174 _('hg import [OPTION]... PATCH...')),
3184 _('hg import [OPTION]... PATCH...')),
3175 "incoming|in":
3185 "incoming|in":
3176 (incoming,
3186 (incoming,
3177 [('f', 'force', None,
3187 [('f', 'force', None,
3178 _('run even when remote repository is unrelated')),
3188 _('run even when remote repository is unrelated')),
3179 ('n', 'newest-first', None, _('show newest record first')),
3189 ('n', 'newest-first', None, _('show newest record first')),
3180 ('', 'bundle', '', _('file to store the bundles into')),
3190 ('', 'bundle', '', _('file to store the bundles into')),
3181 ('r', 'rev', [],
3191 ('r', 'rev', [],
3182 _('a specific revision up to which you would like to pull')),
3192 _('a specific revision up to which you would like to pull')),
3183 ] + logopts + remoteopts,
3193 ] + logopts + remoteopts,
3184 _('hg incoming [-p] [-n] [-M] [-f] [-r REV]...'
3194 _('hg incoming [-p] [-n] [-M] [-f] [-r REV]...'
3185 ' [--bundle FILENAME] [SOURCE]')),
3195 ' [--bundle FILENAME] [SOURCE]')),
3186 "^init":
3196 "^init":
3187 (init,
3197 (init,
3188 remoteopts,
3198 remoteopts,
3189 _('hg init [-e CMD] [--remotecmd CMD] [DEST]')),
3199 _('hg init [-e CMD] [--remotecmd CMD] [DEST]')),
3190 "locate":
3200 "locate":
3191 (locate,
3201 (locate,
3192 [('r', 'rev', '', _('search the repository as it stood at rev')),
3202 [('r', 'rev', '', _('search the repository as it stood at rev')),
3193 ('0', 'print0', None,
3203 ('0', 'print0', None,
3194 _('end filenames with NUL, for use with xargs')),
3204 _('end filenames with NUL, for use with xargs')),
3195 ('f', 'fullpath', None,
3205 ('f', 'fullpath', None,
3196 _('print complete paths from the filesystem root')),
3206 _('print complete paths from the filesystem root')),
3197 ] + walkopts,
3207 ] + walkopts,
3198 _('hg locate [OPTION]... [PATTERN]...')),
3208 _('hg locate [OPTION]... [PATTERN]...')),
3199 "^log|history":
3209 "^log|history":
3200 (log,
3210 (log,
3201 [('f', 'follow', None,
3211 [('f', 'follow', None,
3202 _('follow changeset history, or file history across copies and renames')),
3212 _('follow changeset history, or file history across copies and renames')),
3203 ('', 'follow-first', None,
3213 ('', 'follow-first', None,
3204 _('only follow the first parent of merge changesets')),
3214 _('only follow the first parent of merge changesets')),
3205 ('d', 'date', '', _('show revs matching date spec')),
3215 ('d', 'date', '', _('show revs matching date spec')),
3206 ('C', 'copies', None, _('show copied files')),
3216 ('C', 'copies', None, _('show copied files')),
3207 ('k', 'keyword', [], _('do case-insensitive search for a keyword')),
3217 ('k', 'keyword', [], _('do case-insensitive search for a keyword')),
3208 ('r', 'rev', [], _('show the specified revision or range')),
3218 ('r', 'rev', [], _('show the specified revision or range')),
3209 ('', 'removed', None, _('include revs where files were removed')),
3219 ('', 'removed', None, _('include revs where files were removed')),
3210 ('m', 'only-merges', None, _('show only merges')),
3220 ('m', 'only-merges', None, _('show only merges')),
3211 ('u', 'user', [], _('revs committed by user')),
3221 ('u', 'user', [], _('revs committed by user')),
3212 ('b', 'only-branch', [],
3222 ('b', 'only-branch', [],
3213 _('show only changesets within the given named branch')),
3223 _('show only changesets within the given named branch')),
3214 ('P', 'prune', [], _('do not display revision or any of its ancestors')),
3224 ('P', 'prune', [], _('do not display revision or any of its ancestors')),
3215 ] + logopts + walkopts,
3225 ] + logopts + walkopts,
3216 _('hg log [OPTION]... [FILE]')),
3226 _('hg log [OPTION]... [FILE]')),
3217 "manifest":
3227 "manifest":
3218 (manifest,
3228 (manifest,
3219 [('r', 'rev', '', _('revision to display'))],
3229 [('r', 'rev', '', _('revision to display'))],
3220 _('hg manifest [-r REV]')),
3230 _('hg manifest [-r REV]')),
3221 "^merge":
3231 "^merge":
3222 (merge,
3232 (merge,
3223 [('f', 'force', None, _('force a merge with outstanding changes')),
3233 [('f', 'force', None, _('force a merge with outstanding changes')),
3224 ('r', 'rev', '', _('revision to merge')),
3234 ('r', 'rev', '', _('revision to merge')),
3225 ],
3235 ],
3226 _('hg merge [-f] [[-r] REV]')),
3236 _('hg merge [-f] [[-r] REV]')),
3227 "outgoing|out":
3237 "outgoing|out":
3228 (outgoing,
3238 (outgoing,
3229 [('f', 'force', None,
3239 [('f', 'force', None,
3230 _('run even when remote repository is unrelated')),
3240 _('run even when remote repository is unrelated')),
3231 ('r', 'rev', [],
3241 ('r', 'rev', [],
3232 _('a specific revision up to which you would like to push')),
3242 _('a specific revision up to which you would like to push')),
3233 ('n', 'newest-first', None, _('show newest record first')),
3243 ('n', 'newest-first', None, _('show newest record first')),
3234 ] + logopts + remoteopts,
3244 ] + logopts + remoteopts,
3235 _('hg outgoing [-M] [-p] [-n] [-f] [-r REV]... [DEST]')),
3245 _('hg outgoing [-M] [-p] [-n] [-f] [-r REV]... [DEST]')),
3236 "^parents":
3246 "^parents":
3237 (parents,
3247 (parents,
3238 [('r', 'rev', '', _('show parents from the specified rev')),
3248 [('r', 'rev', '', _('show parents from the specified rev')),
3239 ] + templateopts,
3249 ] + templateopts,
3240 _('hg parents [-r REV] [FILE]')),
3250 _('hg parents [-r REV] [FILE]')),
3241 "paths": (paths, [], _('hg paths [NAME]')),
3251 "paths": (paths, [], _('hg paths [NAME]')),
3242 "^pull":
3252 "^pull":
3243 (pull,
3253 (pull,
3244 [('u', 'update', None,
3254 [('u', 'update', None,
3245 _('update to new tip if changesets were pulled')),
3255 _('update to new tip if changesets were pulled')),
3246 ('f', 'force', None,
3256 ('f', 'force', None,
3247 _('run even when remote repository is unrelated')),
3257 _('run even when remote repository is unrelated')),
3248 ('r', 'rev', [],
3258 ('r', 'rev', [],
3249 _('a specific revision up to which you would like to pull')),
3259 _('a specific revision up to which you would like to pull')),
3250 ] + remoteopts,
3260 ] + remoteopts,
3251 _('hg pull [-u] [-f] [-r REV]... [-e CMD] [--remotecmd CMD] [SOURCE]')),
3261 _('hg pull [-u] [-f] [-r REV]... [-e CMD] [--remotecmd CMD] [SOURCE]')),
3252 "^push":
3262 "^push":
3253 (push,
3263 (push,
3254 [('f', 'force', None, _('force push')),
3264 [('f', 'force', None, _('force push')),
3255 ('r', 'rev', [],
3265 ('r', 'rev', [],
3256 _('a specific revision up to which you would like to push')),
3266 _('a specific revision up to which you would like to push')),
3257 ] + remoteopts,
3267 ] + remoteopts,
3258 _('hg push [-f] [-r REV]... [-e CMD] [--remotecmd CMD] [DEST]')),
3268 _('hg push [-f] [-r REV]... [-e CMD] [--remotecmd CMD] [DEST]')),
3259 "recover": (recover, [], _('hg recover')),
3269 "recover": (recover, [], _('hg recover')),
3260 "^remove|rm":
3270 "^remove|rm":
3261 (remove,
3271 (remove,
3262 [('A', 'after', None, _('record delete for missing files')),
3272 [('A', 'after', None, _('record delete for missing files')),
3263 ('f', 'force', None,
3273 ('f', 'force', None,
3264 _('remove (and delete) file even if added or modified')),
3274 _('remove (and delete) file even if added or modified')),
3265 ] + walkopts,
3275 ] + walkopts,
3266 _('hg remove [OPTION]... FILE...')),
3276 _('hg remove [OPTION]... FILE...')),
3267 "rename|mv":
3277 "rename|mv":
3268 (rename,
3278 (rename,
3269 [('A', 'after', None, _('record a rename that has already occurred')),
3279 [('A', 'after', None, _('record a rename that has already occurred')),
3270 ('f', 'force', None,
3280 ('f', 'force', None,
3271 _('forcibly copy over an existing managed file')),
3281 _('forcibly copy over an existing managed file')),
3272 ] + walkopts + dryrunopts,
3282 ] + walkopts + dryrunopts,
3273 _('hg rename [OPTION]... SOURCE... DEST')),
3283 _('hg rename [OPTION]... SOURCE... DEST')),
3274 "resolve":
3284 "resolve":
3275 (resolve,
3285 (resolve,
3276 [('l', 'list', None, _('list state of files needing merge')),
3286 [('l', 'list', None, _('list state of files needing merge')),
3277 ('m', 'mark', None, _('mark files as resolved')),
3287 ('m', 'mark', None, _('mark files as resolved')),
3278 ('u', 'unmark', None, _('unmark files as resolved'))],
3288 ('u', 'unmark', None, _('unmark files as resolved'))],
3279 _('hg resolve [OPTION] [FILES...]')),
3289 _('hg resolve [OPTION] [FILES...]')),
3280 "revert":
3290 "revert":
3281 (revert,
3291 (revert,
3282 [('a', 'all', None, _('revert all changes when no arguments given')),
3292 [('a', 'all', None, _('revert all changes when no arguments given')),
3283 ('d', 'date', '', _('tipmost revision matching date')),
3293 ('d', 'date', '', _('tipmost revision matching date')),
3284 ('r', 'rev', '', _('revision to revert to')),
3294 ('r', 'rev', '', _('revision to revert to')),
3285 ('', 'no-backup', None, _('do not save backup copies of files')),
3295 ('', 'no-backup', None, _('do not save backup copies of files')),
3286 ] + walkopts + dryrunopts,
3296 ] + walkopts + dryrunopts,
3287 _('hg revert [OPTION]... [-r REV] [NAME]...')),
3297 _('hg revert [OPTION]... [-r REV] [NAME]...')),
3288 "rollback": (rollback, [], _('hg rollback')),
3298 "rollback": (rollback, [], _('hg rollback')),
3289 "root": (root, [], _('hg root')),
3299 "root": (root, [], _('hg root')),
3290 "^serve":
3300 "^serve":
3291 (serve,
3301 (serve,
3292 [('A', 'accesslog', '', _('name of access log file to write to')),
3302 [('A', 'accesslog', '', _('name of access log file to write to')),
3293 ('d', 'daemon', None, _('run server in background')),
3303 ('d', 'daemon', None, _('run server in background')),
3294 ('', 'daemon-pipefds', '', _('used internally by daemon mode')),
3304 ('', 'daemon-pipefds', '', _('used internally by daemon mode')),
3295 ('E', 'errorlog', '', _('name of error log file to write to')),
3305 ('E', 'errorlog', '', _('name of error log file to write to')),
3296 ('p', 'port', 0, _('port to listen on (default: 8000)')),
3306 ('p', 'port', 0, _('port to listen on (default: 8000)')),
3297 ('a', 'address', '', _('address to listen on (default: all interfaces)')),
3307 ('a', 'address', '', _('address to listen on (default: all interfaces)')),
3298 ('', 'prefix', '', _('prefix path to serve from (default: server root)')),
3308 ('', 'prefix', '', _('prefix path to serve from (default: server root)')),
3299 ('n', 'name', '',
3309 ('n', 'name', '',
3300 _('name to show in web pages (default: working dir)')),
3310 _('name to show in web pages (default: working dir)')),
3301 ('', 'webdir-conf', '', _('name of the webdir config file'
3311 ('', 'webdir-conf', '', _('name of the webdir config file'
3302 ' (serve more than one repo)')),
3312 ' (serve more than one repo)')),
3303 ('', 'pid-file', '', _('name of file to write process ID to')),
3313 ('', 'pid-file', '', _('name of file to write process ID to')),
3304 ('', 'stdio', None, _('for remote clients')),
3314 ('', 'stdio', None, _('for remote clients')),
3305 ('t', 'templates', '', _('web templates to use')),
3315 ('t', 'templates', '', _('web templates to use')),
3306 ('', 'style', '', _('template style to use')),
3316 ('', 'style', '', _('template style to use')),
3307 ('6', 'ipv6', None, _('use IPv6 in addition to IPv4')),
3317 ('6', 'ipv6', None, _('use IPv6 in addition to IPv4')),
3308 ('', 'certificate', '', _('SSL certificate file'))],
3318 ('', 'certificate', '', _('SSL certificate file'))],
3309 _('hg serve [OPTION]...')),
3319 _('hg serve [OPTION]...')),
3310 "showconfig|debugconfig":
3320 "showconfig|debugconfig":
3311 (showconfig,
3321 (showconfig,
3312 [('u', 'untrusted', None, _('show untrusted configuration options'))],
3322 [('u', 'untrusted', None, _('show untrusted configuration options'))],
3313 _('hg showconfig [-u] [NAME]...')),
3323 _('hg showconfig [-u] [NAME]...')),
3314 "^status|st":
3324 "^status|st":
3315 (status,
3325 (status,
3316 [('A', 'all', None, _('show status of all files')),
3326 [('A', 'all', None, _('show status of all files')),
3317 ('m', 'modified', None, _('show only modified files')),
3327 ('m', 'modified', None, _('show only modified files')),
3318 ('a', 'added', None, _('show only added files')),
3328 ('a', 'added', None, _('show only added files')),
3319 ('r', 'removed', None, _('show only removed files')),
3329 ('r', 'removed', None, _('show only removed files')),
3320 ('d', 'deleted', None, _('show only deleted (but tracked) files')),
3330 ('d', 'deleted', None, _('show only deleted (but tracked) files')),
3321 ('c', 'clean', None, _('show only files without changes')),
3331 ('c', 'clean', None, _('show only files without changes')),
3322 ('u', 'unknown', None, _('show only unknown (not tracked) files')),
3332 ('u', 'unknown', None, _('show only unknown (not tracked) files')),
3323 ('i', 'ignored', None, _('show only ignored files')),
3333 ('i', 'ignored', None, _('show only ignored files')),
3324 ('n', 'no-status', None, _('hide status prefix')),
3334 ('n', 'no-status', None, _('hide status prefix')),
3325 ('C', 'copies', None, _('show source of copied files')),
3335 ('C', 'copies', None, _('show source of copied files')),
3326 ('0', 'print0', None,
3336 ('0', 'print0', None,
3327 _('end filenames with NUL, for use with xargs')),
3337 _('end filenames with NUL, for use with xargs')),
3328 ('', 'rev', [], _('show difference from revision')),
3338 ('', 'rev', [], _('show difference from revision')),
3329 ] + walkopts,
3339 ] + walkopts,
3330 _('hg status [OPTION]... [FILE]...')),
3340 _('hg status [OPTION]... [FILE]...')),
3331 "tag":
3341 "tag":
3332 (tag,
3342 (tag,
3333 [('f', 'force', None, _('replace existing tag')),
3343 [('f', 'force', None, _('replace existing tag')),
3334 ('l', 'local', None, _('make the tag local')),
3344 ('l', 'local', None, _('make the tag local')),
3335 ('r', 'rev', '', _('revision to tag')),
3345 ('r', 'rev', '', _('revision to tag')),
3336 ('', 'remove', None, _('remove a tag')),
3346 ('', 'remove', None, _('remove a tag')),
3337 # -l/--local is already there, commitopts cannot be used
3347 # -l/--local is already there, commitopts cannot be used
3338 ('m', 'message', '', _('use <text> as commit message')),
3348 ('m', 'message', '', _('use <text> as commit message')),
3339 ] + commitopts2,
3349 ] + commitopts2,
3340 _('hg tag [-l] [-m TEXT] [-d DATE] [-u USER] [-r REV] NAME...')),
3350 _('hg tag [-l] [-m TEXT] [-d DATE] [-u USER] [-r REV] NAME...')),
3341 "tags": (tags, [], _('hg tags')),
3351 "tags": (tags, [], _('hg tags')),
3342 "tip":
3352 "tip":
3343 (tip,
3353 (tip,
3344 [('p', 'patch', None, _('show patch')),
3354 [('p', 'patch', None, _('show patch')),
3345 ] + templateopts,
3355 ] + templateopts,
3346 _('hg tip [-p]')),
3356 _('hg tip [-p]')),
3347 "unbundle":
3357 "unbundle":
3348 (unbundle,
3358 (unbundle,
3349 [('u', 'update', None,
3359 [('u', 'update', None,
3350 _('update to new tip if changesets were unbundled'))],
3360 _('update to new tip if changesets were unbundled'))],
3351 _('hg unbundle [-u] FILE...')),
3361 _('hg unbundle [-u] FILE...')),
3352 "^update|up|checkout|co":
3362 "^update|up|checkout|co":
3353 (update,
3363 (update,
3354 [('C', 'clean', None, _('overwrite locally modified files (no backup)')),
3364 [('C', 'clean', None, _('overwrite locally modified files (no backup)')),
3355 ('d', 'date', '', _('tipmost revision matching date')),
3365 ('d', 'date', '', _('tipmost revision matching date')),
3356 ('r', 'rev', '', _('revision'))],
3366 ('r', 'rev', '', _('revision'))],
3357 _('hg update [-C] [-d DATE] [[-r] REV]')),
3367 _('hg update [-C] [-d DATE] [[-r] REV]')),
3358 "verify": (verify, [], _('hg verify')),
3368 "verify": (verify, [], _('hg verify')),
3359 "version": (version_, [], _('hg version')),
3369 "version": (version_, [], _('hg version')),
3360 }
3370 }
3361
3371
3362 norepo = ("clone init version help debugcomplete debugdata"
3372 norepo = ("clone init version help debugcomplete debugdata"
3363 " debugindex debugindexdot debugdate debuginstall debugfsinfo")
3373 " debugindex debugindexdot debugdate debuginstall debugfsinfo")
3364 optionalrepo = ("identify paths serve showconfig debugancestor")
3374 optionalrepo = ("identify paths serve showconfig debugancestor")
General Comments 0
You need to be logged in to leave comments. Login now