##// END OF EJS Templates
tag: abort if not at a branch head (issue2552)...
Kevin Bullock -
r13135:1c1ca9d3 stable
parent child Browse files
Show More
@@ -1,4518 +1,4530 b''
1 1 # commands.py - command processing for mercurial
2 2 #
3 3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
4 4 #
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2 or any later version.
7 7
8 8 from node import hex, nullid, nullrev, short
9 9 from lock import release
10 10 from i18n import _, gettext
11 11 import os, re, sys, difflib, time, tempfile
12 12 import hg, util, revlog, extensions, copies, error
13 13 import patch, help, mdiff, url, encoding, templatekw, discovery
14 14 import archival, changegroup, cmdutil, sshserver, hbisect, hgweb, hgweb.server
15 15 import merge as mergemod
16 16 import minirst, revset
17 17 import dagparser
18 18
19 19 # Commands start here, listed alphabetically
20 20
21 21 def add(ui, repo, *pats, **opts):
22 22 """add the specified files on the next commit
23 23
24 24 Schedule files to be version controlled and added to the
25 25 repository.
26 26
27 27 The files will be added to the repository at the next commit. To
28 28 undo an add before that, see :hg:`forget`.
29 29
30 30 If no names are given, add all files to the repository.
31 31
32 32 .. container:: verbose
33 33
34 34 An example showing how new (unknown) files are added
35 35 automatically by :hg:`add`::
36 36
37 37 $ ls
38 38 foo.c
39 39 $ hg status
40 40 ? foo.c
41 41 $ hg add
42 42 adding foo.c
43 43 $ hg status
44 44 A foo.c
45 45
46 46 Returns 0 if all files are successfully added.
47 47 """
48 48
49 49 m = cmdutil.match(repo, pats, opts)
50 50 rejected = cmdutil.add(ui, repo, m, opts.get('dry_run'),
51 51 opts.get('subrepos'), prefix="")
52 52 return rejected and 1 or 0
53 53
54 54 def addremove(ui, repo, *pats, **opts):
55 55 """add all new files, delete all missing files
56 56
57 57 Add all new files and remove all missing files from the
58 58 repository.
59 59
60 60 New files are ignored if they match any of the patterns in
61 61 .hgignore. As with add, these changes take effect at the next
62 62 commit.
63 63
64 64 Use the -s/--similarity option to detect renamed files. With a
65 65 parameter greater than 0, this compares every removed file with
66 66 every added file and records those similar enough as renames. This
67 67 option takes a percentage between 0 (disabled) and 100 (files must
68 68 be identical) as its parameter. Detecting renamed files this way
69 69 can be expensive. After using this option, :hg:`status -C` can be
70 70 used to check which files were identified as moved or renamed.
71 71
72 72 Returns 0 if all files are successfully added.
73 73 """
74 74 try:
75 75 sim = float(opts.get('similarity') or 100)
76 76 except ValueError:
77 77 raise util.Abort(_('similarity must be a number'))
78 78 if sim < 0 or sim > 100:
79 79 raise util.Abort(_('similarity must be between 0 and 100'))
80 80 return cmdutil.addremove(repo, pats, opts, similarity=sim / 100.0)
81 81
82 82 def annotate(ui, repo, *pats, **opts):
83 83 """show changeset information by line for each file
84 84
85 85 List changes in files, showing the revision id responsible for
86 86 each line
87 87
88 88 This command is useful for discovering when a change was made and
89 89 by whom.
90 90
91 91 Without the -a/--text option, annotate will avoid processing files
92 92 it detects as binary. With -a, annotate will annotate the file
93 93 anyway, although the results will probably be neither useful
94 94 nor desirable.
95 95
96 96 Returns 0 on success.
97 97 """
98 98 if opts.get('follow'):
99 99 # --follow is deprecated and now just an alias for -f/--file
100 100 # to mimic the behavior of Mercurial before version 1.5
101 101 opts['file'] = 1
102 102
103 103 datefunc = ui.quiet and util.shortdate or util.datestr
104 104 getdate = util.cachefunc(lambda x: datefunc(x[0].date()))
105 105
106 106 if not pats:
107 107 raise util.Abort(_('at least one filename or pattern is required'))
108 108
109 109 opmap = [('user', lambda x: ui.shortuser(x[0].user())),
110 110 ('number', lambda x: str(x[0].rev())),
111 111 ('changeset', lambda x: short(x[0].node())),
112 112 ('date', getdate),
113 113 ('file', lambda x: x[0].path()),
114 114 ]
115 115
116 116 if (not opts.get('user') and not opts.get('changeset')
117 117 and not opts.get('date') and not opts.get('file')):
118 118 opts['number'] = 1
119 119
120 120 linenumber = opts.get('line_number') is not None
121 121 if linenumber and (not opts.get('changeset')) and (not opts.get('number')):
122 122 raise util.Abort(_('at least one of -n/-c is required for -l'))
123 123
124 124 funcmap = [func for op, func in opmap if opts.get(op)]
125 125 if linenumber:
126 126 lastfunc = funcmap[-1]
127 127 funcmap[-1] = lambda x: "%s:%s" % (lastfunc(x), x[1])
128 128
129 129 ctx = repo[opts.get('rev')]
130 130 m = cmdutil.match(repo, pats, opts)
131 131 follow = not opts.get('no_follow')
132 132 for abs in ctx.walk(m):
133 133 fctx = ctx[abs]
134 134 if not opts.get('text') and util.binary(fctx.data()):
135 135 ui.write(_("%s: binary file\n") % ((pats and m.rel(abs)) or abs))
136 136 continue
137 137
138 138 lines = fctx.annotate(follow=follow, linenumber=linenumber)
139 139 pieces = []
140 140
141 141 for f in funcmap:
142 142 l = [f(n) for n, dummy in lines]
143 143 if l:
144 144 sized = [(x, encoding.colwidth(x)) for x in l]
145 145 ml = max([w for x, w in sized])
146 146 pieces.append(["%s%s" % (' ' * (ml - w), x) for x, w in sized])
147 147
148 148 if pieces:
149 149 for p, l in zip(zip(*pieces), lines):
150 150 ui.write("%s: %s" % (" ".join(p), l[1]))
151 151
152 152 def archive(ui, repo, dest, **opts):
153 153 '''create an unversioned archive of a repository revision
154 154
155 155 By default, the revision used is the parent of the working
156 156 directory; use -r/--rev to specify a different revision.
157 157
158 158 The archive type is automatically detected based on file
159 159 extension (or override using -t/--type).
160 160
161 161 Valid types are:
162 162
163 163 :``files``: a directory full of files (default)
164 164 :``tar``: tar archive, uncompressed
165 165 :``tbz2``: tar archive, compressed using bzip2
166 166 :``tgz``: tar archive, compressed using gzip
167 167 :``uzip``: zip archive, uncompressed
168 168 :``zip``: zip archive, compressed using deflate
169 169
170 170 The exact name of the destination archive or directory is given
171 171 using a format string; see :hg:`help export` for details.
172 172
173 173 Each member added to an archive file has a directory prefix
174 174 prepended. Use -p/--prefix to specify a format string for the
175 175 prefix. The default is the basename of the archive, with suffixes
176 176 removed.
177 177
178 178 Returns 0 on success.
179 179 '''
180 180
181 181 ctx = repo[opts.get('rev')]
182 182 if not ctx:
183 183 raise util.Abort(_('no working directory: please specify a revision'))
184 184 node = ctx.node()
185 185 dest = cmdutil.make_filename(repo, dest, node)
186 186 if os.path.realpath(dest) == repo.root:
187 187 raise util.Abort(_('repository root cannot be destination'))
188 188
189 189 kind = opts.get('type') or archival.guesskind(dest) or 'files'
190 190 prefix = opts.get('prefix')
191 191
192 192 if dest == '-':
193 193 if kind == 'files':
194 194 raise util.Abort(_('cannot archive plain files to stdout'))
195 195 dest = sys.stdout
196 196 if not prefix:
197 197 prefix = os.path.basename(repo.root) + '-%h'
198 198
199 199 prefix = cmdutil.make_filename(repo, prefix, node)
200 200 matchfn = cmdutil.match(repo, [], opts)
201 201 archival.archive(repo, dest, node, kind, not opts.get('no_decode'),
202 202 matchfn, prefix, subrepos=opts.get('subrepos'))
203 203
204 204 def backout(ui, repo, node=None, rev=None, **opts):
205 205 '''reverse effect of earlier changeset
206 206
207 207 The backout command merges the reverse effect of the reverted
208 208 changeset into the working directory.
209 209
210 210 With the --merge option, it first commits the reverted changes
211 211 as a new changeset. This new changeset is a child of the reverted
212 212 changeset.
213 213 The --merge option remembers the parent of the working directory
214 214 before starting the backout, then merges the new head with that
215 215 changeset afterwards.
216 216 This will result in an explicit merge in the history.
217 217
218 218 If you backout a changeset other than the original parent of the
219 219 working directory, the result of this merge is not committed,
220 220 as with a normal merge. Otherwise, no merge is needed and the
221 221 commit is automatic.
222 222
223 223 Note that the default behavior (without --merge) has changed in
224 224 version 1.7. To restore the previous default behavior, use
225 225 :hg:`backout --merge` and then :hg:`update --clean .` to get rid of
226 226 the ongoing merge.
227 227
228 228 See :hg:`help dates` for a list of formats valid for -d/--date.
229 229
230 230 Returns 0 on success.
231 231 '''
232 232 if rev and node:
233 233 raise util.Abort(_("please specify just one revision"))
234 234
235 235 if not rev:
236 236 rev = node
237 237
238 238 if not rev:
239 239 raise util.Abort(_("please specify a revision to backout"))
240 240
241 241 date = opts.get('date')
242 242 if date:
243 243 opts['date'] = util.parsedate(date)
244 244
245 245 cmdutil.bail_if_changed(repo)
246 246 node = repo.lookup(rev)
247 247
248 248 op1, op2 = repo.dirstate.parents()
249 249 a = repo.changelog.ancestor(op1, node)
250 250 if a != node:
251 251 raise util.Abort(_('cannot backout change on a different branch'))
252 252
253 253 p1, p2 = repo.changelog.parents(node)
254 254 if p1 == nullid:
255 255 raise util.Abort(_('cannot backout a change with no parents'))
256 256 if p2 != nullid:
257 257 if not opts.get('parent'):
258 258 raise util.Abort(_('cannot backout a merge changeset without '
259 259 '--parent'))
260 260 p = repo.lookup(opts['parent'])
261 261 if p not in (p1, p2):
262 262 raise util.Abort(_('%s is not a parent of %s') %
263 263 (short(p), short(node)))
264 264 parent = p
265 265 else:
266 266 if opts.get('parent'):
267 267 raise util.Abort(_('cannot use --parent on non-merge changeset'))
268 268 parent = p1
269 269
270 270 # the backout should appear on the same branch
271 271 branch = repo.dirstate.branch()
272 272 hg.clean(repo, node, show_stats=False)
273 273 repo.dirstate.setbranch(branch)
274 274 revert_opts = opts.copy()
275 275 revert_opts['date'] = None
276 276 revert_opts['all'] = True
277 277 revert_opts['rev'] = hex(parent)
278 278 revert_opts['no_backup'] = None
279 279 revert(ui, repo, **revert_opts)
280 280 if not opts.get('merge') and op1 != node:
281 281 try:
282 282 ui.setconfig('ui', 'forcemerge', opts.get('tool', ''))
283 283 return hg.update(repo, op1)
284 284 finally:
285 285 ui.setconfig('ui', 'forcemerge', '')
286 286
287 287 commit_opts = opts.copy()
288 288 commit_opts['addremove'] = False
289 289 if not commit_opts['message'] and not commit_opts['logfile']:
290 290 # we don't translate commit messages
291 291 commit_opts['message'] = "Backed out changeset %s" % short(node)
292 292 commit_opts['force_editor'] = True
293 293 commit(ui, repo, **commit_opts)
294 294 def nice(node):
295 295 return '%d:%s' % (repo.changelog.rev(node), short(node))
296 296 ui.status(_('changeset %s backs out changeset %s\n') %
297 297 (nice(repo.changelog.tip()), nice(node)))
298 298 if opts.get('merge') and op1 != node:
299 299 hg.clean(repo, op1, show_stats=False)
300 300 ui.status(_('merging with changeset %s\n')
301 301 % nice(repo.changelog.tip()))
302 302 try:
303 303 ui.setconfig('ui', 'forcemerge', opts.get('tool', ''))
304 304 return hg.merge(repo, hex(repo.changelog.tip()))
305 305 finally:
306 306 ui.setconfig('ui', 'forcemerge', '')
307 307 return 0
308 308
309 309 def bisect(ui, repo, rev=None, extra=None, command=None,
310 310 reset=None, good=None, bad=None, skip=None, noupdate=None):
311 311 """subdivision search of changesets
312 312
313 313 This command helps to find changesets which introduce problems. To
314 314 use, mark the earliest changeset you know exhibits the problem as
315 315 bad, then mark the latest changeset which is free from the problem
316 316 as good. Bisect will update your working directory to a revision
317 317 for testing (unless the -U/--noupdate option is specified). Once
318 318 you have performed tests, mark the working directory as good or
319 319 bad, and bisect will either update to another candidate changeset
320 320 or announce that it has found the bad revision.
321 321
322 322 As a shortcut, you can also use the revision argument to mark a
323 323 revision as good or bad without checking it out first.
324 324
325 325 If you supply a command, it will be used for automatic bisection.
326 326 Its exit status will be used to mark revisions as good or bad:
327 327 status 0 means good, 125 means to skip the revision, 127
328 328 (command not found) will abort the bisection, and any other
329 329 non-zero exit status means the revision is bad.
330 330
331 331 Returns 0 on success.
332 332 """
333 333 def print_result(nodes, good):
334 334 displayer = cmdutil.show_changeset(ui, repo, {})
335 335 if len(nodes) == 1:
336 336 # narrowed it down to a single revision
337 337 if good:
338 338 ui.write(_("The first good revision is:\n"))
339 339 else:
340 340 ui.write(_("The first bad revision is:\n"))
341 341 displayer.show(repo[nodes[0]])
342 342 parents = repo[nodes[0]].parents()
343 343 if len(parents) > 1:
344 344 side = good and state['bad'] or state['good']
345 345 num = len(set(i.node() for i in parents) & set(side))
346 346 if num == 1:
347 347 common = parents[0].ancestor(parents[1])
348 348 ui.write(_('Not all ancestors of this changeset have been'
349 349 ' checked.\nTo check the other ancestors, start'
350 350 ' from the common ancestor, %s.\n' % common))
351 351 else:
352 352 # multiple possible revisions
353 353 if good:
354 354 ui.write(_("Due to skipped revisions, the first "
355 355 "good revision could be any of:\n"))
356 356 else:
357 357 ui.write(_("Due to skipped revisions, the first "
358 358 "bad revision could be any of:\n"))
359 359 for n in nodes:
360 360 displayer.show(repo[n])
361 361 displayer.close()
362 362
363 363 def check_state(state, interactive=True):
364 364 if not state['good'] or not state['bad']:
365 365 if (good or bad or skip or reset) and interactive:
366 366 return
367 367 if not state['good']:
368 368 raise util.Abort(_('cannot bisect (no known good revisions)'))
369 369 else:
370 370 raise util.Abort(_('cannot bisect (no known bad revisions)'))
371 371 return True
372 372
373 373 # backward compatibility
374 374 if rev in "good bad reset init".split():
375 375 ui.warn(_("(use of 'hg bisect <cmd>' is deprecated)\n"))
376 376 cmd, rev, extra = rev, extra, None
377 377 if cmd == "good":
378 378 good = True
379 379 elif cmd == "bad":
380 380 bad = True
381 381 else:
382 382 reset = True
383 383 elif extra or good + bad + skip + reset + bool(command) > 1:
384 384 raise util.Abort(_('incompatible arguments'))
385 385
386 386 if reset:
387 387 p = repo.join("bisect.state")
388 388 if os.path.exists(p):
389 389 os.unlink(p)
390 390 return
391 391
392 392 state = hbisect.load_state(repo)
393 393
394 394 if command:
395 395 changesets = 1
396 396 try:
397 397 while changesets:
398 398 # update state
399 399 status = util.system(command)
400 400 if status == 125:
401 401 transition = "skip"
402 402 elif status == 0:
403 403 transition = "good"
404 404 # status < 0 means process was killed
405 405 elif status == 127:
406 406 raise util.Abort(_("failed to execute %s") % command)
407 407 elif status < 0:
408 408 raise util.Abort(_("%s killed") % command)
409 409 else:
410 410 transition = "bad"
411 411 ctx = repo[rev or '.']
412 412 state[transition].append(ctx.node())
413 413 ui.status(_('Changeset %d:%s: %s\n') % (ctx, ctx, transition))
414 414 check_state(state, interactive=False)
415 415 # bisect
416 416 nodes, changesets, good = hbisect.bisect(repo.changelog, state)
417 417 # update to next check
418 418 cmdutil.bail_if_changed(repo)
419 419 hg.clean(repo, nodes[0], show_stats=False)
420 420 finally:
421 421 hbisect.save_state(repo, state)
422 422 print_result(nodes, good)
423 423 return
424 424
425 425 # update state
426 426
427 427 if rev:
428 428 nodes = [repo.lookup(i) for i in cmdutil.revrange(repo, [rev])]
429 429 else:
430 430 nodes = [repo.lookup('.')]
431 431
432 432 if good or bad or skip:
433 433 if good:
434 434 state['good'] += nodes
435 435 elif bad:
436 436 state['bad'] += nodes
437 437 elif skip:
438 438 state['skip'] += nodes
439 439 hbisect.save_state(repo, state)
440 440
441 441 if not check_state(state):
442 442 return
443 443
444 444 # actually bisect
445 445 nodes, changesets, good = hbisect.bisect(repo.changelog, state)
446 446 if changesets == 0:
447 447 print_result(nodes, good)
448 448 else:
449 449 assert len(nodes) == 1 # only a single node can be tested next
450 450 node = nodes[0]
451 451 # compute the approximate number of remaining tests
452 452 tests, size = 0, 2
453 453 while size <= changesets:
454 454 tests, size = tests + 1, size * 2
455 455 rev = repo.changelog.rev(node)
456 456 ui.write(_("Testing changeset %d:%s "
457 457 "(%d changesets remaining, ~%d tests)\n")
458 458 % (rev, short(node), changesets, tests))
459 459 if not noupdate:
460 460 cmdutil.bail_if_changed(repo)
461 461 return hg.clean(repo, node)
462 462
463 463 def branch(ui, repo, label=None, **opts):
464 464 """set or show the current branch name
465 465
466 466 With no argument, show the current branch name. With one argument,
467 467 set the working directory branch name (the branch will not exist
468 468 in the repository until the next commit). Standard practice
469 469 recommends that primary development take place on the 'default'
470 470 branch.
471 471
472 472 Unless -f/--force is specified, branch will not let you set a
473 473 branch name that already exists, even if it's inactive.
474 474
475 475 Use -C/--clean to reset the working directory branch to that of
476 476 the parent of the working directory, negating a previous branch
477 477 change.
478 478
479 479 Use the command :hg:`update` to switch to an existing branch. Use
480 480 :hg:`commit --close-branch` to mark this branch as closed.
481 481
482 482 Returns 0 on success.
483 483 """
484 484
485 485 if opts.get('clean'):
486 486 label = repo[None].parents()[0].branch()
487 487 repo.dirstate.setbranch(label)
488 488 ui.status(_('reset working directory to branch %s\n') % label)
489 489 elif label:
490 490 utflabel = encoding.fromlocal(label)
491 491 if not opts.get('force') and utflabel in repo.branchtags():
492 492 if label not in [p.branch() for p in repo.parents()]:
493 493 raise util.Abort(_('a branch of the same name already exists'
494 494 " (use 'hg update' to switch to it)"))
495 495 repo.dirstate.setbranch(utflabel)
496 496 ui.status(_('marked working directory as branch %s\n') % label)
497 497 else:
498 498 ui.write("%s\n" % encoding.tolocal(repo.dirstate.branch()))
499 499
500 500 def branches(ui, repo, active=False, closed=False):
501 501 """list repository named branches
502 502
503 503 List the repository's named branches, indicating which ones are
504 504 inactive. If -c/--closed is specified, also list branches which have
505 505 been marked closed (see :hg:`commit --close-branch`).
506 506
507 507 If -a/--active is specified, only show active branches. A branch
508 508 is considered active if it contains repository heads.
509 509
510 510 Use the command :hg:`update` to switch to an existing branch.
511 511
512 512 Returns 0.
513 513 """
514 514
515 515 hexfunc = ui.debugflag and hex or short
516 516 activebranches = [repo[n].branch() for n in repo.heads()]
517 517 def testactive(tag, node):
518 518 realhead = tag in activebranches
519 519 open = node in repo.branchheads(tag, closed=False)
520 520 return realhead and open
521 521 branches = sorted([(testactive(tag, node), repo.changelog.rev(node), tag)
522 522 for tag, node in repo.branchtags().items()],
523 523 reverse=True)
524 524
525 525 for isactive, node, tag in branches:
526 526 if (not active) or isactive:
527 527 encodedtag = encoding.tolocal(tag)
528 528 if ui.quiet:
529 529 ui.write("%s\n" % encodedtag)
530 530 else:
531 531 hn = repo.lookup(node)
532 532 if isactive:
533 533 label = 'branches.active'
534 534 notice = ''
535 535 elif hn not in repo.branchheads(tag, closed=False):
536 536 if not closed:
537 537 continue
538 538 label = 'branches.closed'
539 539 notice = _(' (closed)')
540 540 else:
541 541 label = 'branches.inactive'
542 542 notice = _(' (inactive)')
543 543 if tag == repo.dirstate.branch():
544 544 label = 'branches.current'
545 545 rev = str(node).rjust(31 - encoding.colwidth(encodedtag))
546 546 rev = ui.label('%s:%s' % (rev, hexfunc(hn)), 'log.changeset')
547 547 encodedtag = ui.label(encodedtag, label)
548 548 ui.write("%s %s%s\n" % (encodedtag, rev, notice))
549 549
550 550 def bundle(ui, repo, fname, dest=None, **opts):
551 551 """create a changegroup file
552 552
553 553 Generate a compressed changegroup file collecting changesets not
554 554 known to be in another repository.
555 555
556 556 If you omit the destination repository, then hg assumes the
557 557 destination will have all the nodes you specify with --base
558 558 parameters. To create a bundle containing all changesets, use
559 559 -a/--all (or --base null).
560 560
561 561 You can change compression method with the -t/--type option.
562 562 The available compression methods are: none, bzip2, and
563 563 gzip (by default, bundles are compressed using bzip2).
564 564
565 565 The bundle file can then be transferred using conventional means
566 566 and applied to another repository with the unbundle or pull
567 567 command. This is useful when direct push and pull are not
568 568 available or when exporting an entire repository is undesirable.
569 569
570 570 Applying bundles preserves all changeset contents including
571 571 permissions, copy/rename information, and revision history.
572 572
573 573 Returns 0 on success, 1 if no changes found.
574 574 """
575 575 revs = opts.get('rev') or None
576 576 if opts.get('all'):
577 577 base = ['null']
578 578 else:
579 579 base = opts.get('base')
580 580 if base:
581 581 if dest:
582 582 raise util.Abort(_("--base is incompatible with specifying "
583 583 "a destination"))
584 584 base = [repo.lookup(rev) for rev in base]
585 585 # create the right base
586 586 # XXX: nodesbetween / changegroup* should be "fixed" instead
587 587 o = []
588 588 has = set((nullid,))
589 589 for n in base:
590 590 has.update(repo.changelog.reachable(n))
591 591 if revs:
592 592 revs = [repo.lookup(rev) for rev in revs]
593 593 visit = revs[:]
594 594 has.difference_update(visit)
595 595 else:
596 596 visit = repo.changelog.heads()
597 597 seen = {}
598 598 while visit:
599 599 n = visit.pop(0)
600 600 parents = [p for p in repo.changelog.parents(n) if p not in has]
601 601 if len(parents) == 0:
602 602 if n not in has:
603 603 o.append(n)
604 604 else:
605 605 for p in parents:
606 606 if p not in seen:
607 607 seen[p] = 1
608 608 visit.append(p)
609 609 else:
610 610 dest = ui.expandpath(dest or 'default-push', dest or 'default')
611 611 dest, branches = hg.parseurl(dest, opts.get('branch'))
612 612 other = hg.repository(hg.remoteui(repo, opts), dest)
613 613 revs, checkout = hg.addbranchrevs(repo, other, branches, revs)
614 614 if revs:
615 615 revs = [repo.lookup(rev) for rev in revs]
616 616 o = discovery.findoutgoing(repo, other, force=opts.get('force'))
617 617
618 618 if not o:
619 619 ui.status(_("no changes found\n"))
620 620 return 1
621 621
622 622 if revs:
623 623 cg = repo.changegroupsubset(o, revs, 'bundle')
624 624 else:
625 625 cg = repo.changegroup(o, 'bundle')
626 626
627 627 bundletype = opts.get('type', 'bzip2').lower()
628 628 btypes = {'none': 'HG10UN', 'bzip2': 'HG10BZ', 'gzip': 'HG10GZ'}
629 629 bundletype = btypes.get(bundletype)
630 630 if bundletype not in changegroup.bundletypes:
631 631 raise util.Abort(_('unknown bundle type specified with --type'))
632 632
633 633 changegroup.writebundle(cg, fname, bundletype)
634 634
635 635 def cat(ui, repo, file1, *pats, **opts):
636 636 """output the current or given revision of files
637 637
638 638 Print the specified files as they were at the given revision. If
639 639 no revision is given, the parent of the working directory is used,
640 640 or tip if no revision is checked out.
641 641
642 642 Output may be to a file, in which case the name of the file is
643 643 given using a format string. The formatting rules are the same as
644 644 for the export command, with the following additions:
645 645
646 646 :``%s``: basename of file being printed
647 647 :``%d``: dirname of file being printed, or '.' if in repository root
648 648 :``%p``: root-relative path name of file being printed
649 649
650 650 Returns 0 on success.
651 651 """
652 652 ctx = cmdutil.revsingle(repo, opts.get('rev'))
653 653 err = 1
654 654 m = cmdutil.match(repo, (file1,) + pats, opts)
655 655 for abs in ctx.walk(m):
656 656 fp = cmdutil.make_file(repo, opts.get('output'), ctx.node(), pathname=abs)
657 657 data = ctx[abs].data()
658 658 if opts.get('decode'):
659 659 data = repo.wwritedata(abs, data)
660 660 fp.write(data)
661 661 err = 0
662 662 return err
663 663
664 664 def clone(ui, source, dest=None, **opts):
665 665 """make a copy of an existing repository
666 666
667 667 Create a copy of an existing repository in a new directory.
668 668
669 669 If no destination directory name is specified, it defaults to the
670 670 basename of the source.
671 671
672 672 The location of the source is added to the new repository's
673 673 .hg/hgrc file, as the default to be used for future pulls.
674 674
675 675 See :hg:`help urls` for valid source format details.
676 676
677 677 It is possible to specify an ``ssh://`` URL as the destination, but no
678 678 .hg/hgrc and working directory will be created on the remote side.
679 679 Please see :hg:`help urls` for important details about ``ssh://`` URLs.
680 680
681 681 A set of changesets (tags, or branch names) to pull may be specified
682 682 by listing each changeset (tag, or branch name) with -r/--rev.
683 683 If -r/--rev is used, the cloned repository will contain only a subset
684 684 of the changesets of the source repository. Only the set of changesets
685 685 defined by all -r/--rev options (including all their ancestors)
686 686 will be pulled into the destination repository.
687 687 No subsequent changesets (including subsequent tags) will be present
688 688 in the destination.
689 689
690 690 Using -r/--rev (or 'clone src#rev dest') implies --pull, even for
691 691 local source repositories.
692 692
693 693 For efficiency, hardlinks are used for cloning whenever the source
694 694 and destination are on the same filesystem (note this applies only
695 695 to the repository data, not to the working directory). Some
696 696 filesystems, such as AFS, implement hardlinking incorrectly, but
697 697 do not report errors. In these cases, use the --pull option to
698 698 avoid hardlinking.
699 699
700 700 In some cases, you can clone repositories and the working directory
701 701 using full hardlinks with ::
702 702
703 703 $ cp -al REPO REPOCLONE
704 704
705 705 This is the fastest way to clone, but it is not always safe. The
706 706 operation is not atomic (making sure REPO is not modified during
707 707 the operation is up to you) and you have to make sure your editor
708 708 breaks hardlinks (Emacs and most Linux Kernel tools do so). Also,
709 709 this is not compatible with certain extensions that place their
710 710 metadata under the .hg directory, such as mq.
711 711
712 712 Mercurial will update the working directory to the first applicable
713 713 revision from this list:
714 714
715 715 a) null if -U or the source repository has no changesets
716 716 b) if -u . and the source repository is local, the first parent of
717 717 the source repository's working directory
718 718 c) the changeset specified with -u (if a branch name, this means the
719 719 latest head of that branch)
720 720 d) the changeset specified with -r
721 721 e) the tipmost head specified with -b
722 722 f) the tipmost head specified with the url#branch source syntax
723 723 g) the tipmost head of the default branch
724 724 h) tip
725 725
726 726 Returns 0 on success.
727 727 """
728 728 if opts.get('noupdate') and opts.get('updaterev'):
729 729 raise util.Abort(_("cannot specify both --noupdate and --updaterev"))
730 730
731 731 r = hg.clone(hg.remoteui(ui, opts), source, dest,
732 732 pull=opts.get('pull'),
733 733 stream=opts.get('uncompressed'),
734 734 rev=opts.get('rev'),
735 735 update=opts.get('updaterev') or not opts.get('noupdate'),
736 736 branch=opts.get('branch'))
737 737
738 738 return r is None
739 739
740 740 def commit(ui, repo, *pats, **opts):
741 741 """commit the specified files or all outstanding changes
742 742
743 743 Commit changes to the given files into the repository. Unlike a
744 744 centralized RCS, this operation is a local operation. See
745 745 :hg:`push` for a way to actively distribute your changes.
746 746
747 747 If a list of files is omitted, all changes reported by :hg:`status`
748 748 will be committed.
749 749
750 750 If you are committing the result of a merge, do not provide any
751 751 filenames or -I/-X filters.
752 752
753 753 If no commit message is specified, Mercurial starts your
754 754 configured editor where you can enter a message. In case your
755 755 commit fails, you will find a backup of your message in
756 756 ``.hg/last-message.txt``.
757 757
758 758 See :hg:`help dates` for a list of formats valid for -d/--date.
759 759
760 760 Returns 0 on success, 1 if nothing changed.
761 761 """
762 762 extra = {}
763 763 if opts.get('close_branch'):
764 764 if repo['.'].node() not in repo.branchheads():
765 765 # The topo heads set is included in the branch heads set of the
766 766 # current branch, so it's sufficient to test branchheads
767 767 raise util.Abort(_('can only close branch heads'))
768 768 extra['close'] = 1
769 769 e = cmdutil.commiteditor
770 770 if opts.get('force_editor'):
771 771 e = cmdutil.commitforceeditor
772 772
773 773 def commitfunc(ui, repo, message, match, opts):
774 774 return repo.commit(message, opts.get('user'), opts.get('date'), match,
775 775 editor=e, extra=extra)
776 776
777 777 branch = repo[None].branch()
778 778 bheads = repo.branchheads(branch)
779 779
780 780 node = cmdutil.commit(ui, repo, commitfunc, pats, opts)
781 781 if not node:
782 782 ui.status(_("nothing changed\n"))
783 783 return 1
784 784
785 785 ctx = repo[node]
786 786 parents = ctx.parents()
787 787
788 788 if bheads and not [x for x in parents
789 789 if x.node() in bheads and x.branch() == branch]:
790 790 ui.status(_('created new head\n'))
791 791 # The message is not printed for initial roots. For the other
792 792 # changesets, it is printed in the following situations:
793 793 #
794 794 # Par column: for the 2 parents with ...
795 795 # N: null or no parent
796 796 # B: parent is on another named branch
797 797 # C: parent is a regular non head changeset
798 798 # H: parent was a branch head of the current branch
799 799 # Msg column: whether we print "created new head" message
800 800 # In the following, it is assumed that there already exists some
801 801 # initial branch heads of the current branch, otherwise nothing is
802 802 # printed anyway.
803 803 #
804 804 # Par Msg Comment
805 805 # NN y additional topo root
806 806 #
807 807 # BN y additional branch root
808 808 # CN y additional topo head
809 809 # HN n usual case
810 810 #
811 811 # BB y weird additional branch root
812 812 # CB y branch merge
813 813 # HB n merge with named branch
814 814 #
815 815 # CC y additional head from merge
816 816 # CH n merge with a head
817 817 #
818 818 # HH n head merge: head count decreases
819 819
820 820 if not opts.get('close_branch'):
821 821 for r in parents:
822 822 if r.extra().get('close') and r.branch() == branch:
823 823 ui.status(_('reopening closed branch head %d\n') % r)
824 824
825 825 if ui.debugflag:
826 826 ui.write(_('committed changeset %d:%s\n') % (int(ctx), ctx.hex()))
827 827 elif ui.verbose:
828 828 ui.write(_('committed changeset %d:%s\n') % (int(ctx), ctx))
829 829
830 830 def copy(ui, repo, *pats, **opts):
831 831 """mark files as copied for the next commit
832 832
833 833 Mark dest as having copies of source files. If dest is a
834 834 directory, copies are put in that directory. If dest is a file,
835 835 the source must be a single file.
836 836
837 837 By default, this command copies the contents of files as they
838 838 exist in the working directory. If invoked with -A/--after, the
839 839 operation is recorded, but no copying is performed.
840 840
841 841 This command takes effect with the next commit. To undo a copy
842 842 before that, see :hg:`revert`.
843 843
844 844 Returns 0 on success, 1 if errors are encountered.
845 845 """
846 846 wlock = repo.wlock(False)
847 847 try:
848 848 return cmdutil.copy(ui, repo, pats, opts)
849 849 finally:
850 850 wlock.release()
851 851
852 852 def debugancestor(ui, repo, *args):
853 853 """find the ancestor revision of two revisions in a given index"""
854 854 if len(args) == 3:
855 855 index, rev1, rev2 = args
856 856 r = revlog.revlog(util.opener(os.getcwd(), audit=False), index)
857 857 lookup = r.lookup
858 858 elif len(args) == 2:
859 859 if not repo:
860 860 raise util.Abort(_("there is no Mercurial repository here "
861 861 "(.hg not found)"))
862 862 rev1, rev2 = args
863 863 r = repo.changelog
864 864 lookup = repo.lookup
865 865 else:
866 866 raise util.Abort(_('either two or three arguments required'))
867 867 a = r.ancestor(lookup(rev1), lookup(rev2))
868 868 ui.write("%d:%s\n" % (r.rev(a), hex(a)))
869 869
870 870 def debugbuilddag(ui, repo, text,
871 871 mergeable_file=False,
872 872 appended_file=False,
873 873 overwritten_file=False,
874 874 new_file=False):
875 875 """builds a repo with a given dag from scratch in the current empty repo
876 876
877 877 Elements:
878 878
879 879 - "+n" is a linear run of n nodes based on the current default parent
880 880 - "." is a single node based on the current default parent
881 881 - "$" resets the default parent to null (implied at the start);
882 882 otherwise the default parent is always the last node created
883 883 - "<p" sets the default parent to the backref p
884 884 - "*p" is a fork at parent p, which is a backref
885 885 - "*p1/p2" is a merge of parents p1 and p2, which are backrefs
886 886 - "/p2" is a merge of the preceding node and p2
887 887 - ":tag" defines a local tag for the preceding node
888 888 - "@branch" sets the named branch for subsequent nodes
889 889 - "!command" runs the command using your shell
890 890 - "!!my command\\n" is like "!", but to the end of the line
891 891 - "#...\\n" is a comment up to the end of the line
892 892
893 893 Whitespace between the above elements is ignored.
894 894
895 895 A backref is either
896 896
897 897 - a number n, which references the node curr-n, where curr is the current
898 898 node, or
899 899 - the name of a local tag you placed earlier using ":tag", or
900 900 - empty to denote the default parent.
901 901
902 902 All string valued-elements are either strictly alphanumeric, or must
903 903 be enclosed in double quotes ("..."), with "\\" as escape character.
904 904
905 905 Note that the --overwritten-file and --appended-file options imply the
906 906 use of "HGMERGE=internal:local" during DAG buildup.
907 907 """
908 908
909 909 if not (mergeable_file or appended_file or overwritten_file or new_file):
910 910 raise util.Abort(_('need at least one of -m, -a, -o, -n'))
911 911
912 912 if len(repo.changelog) > 0:
913 913 raise util.Abort(_('repository is not empty'))
914 914
915 915 if overwritten_file or appended_file:
916 916 # we don't want to fail in merges during buildup
917 917 os.environ['HGMERGE'] = 'internal:local'
918 918
919 919 def writefile(fname, text, fmode="wb"):
920 920 f = open(fname, fmode)
921 921 try:
922 922 f.write(text)
923 923 finally:
924 924 f.close()
925 925
926 926 if mergeable_file:
927 927 linesperrev = 2
928 928 # determine number of revs in DAG
929 929 n = 0
930 930 for type, data in dagparser.parsedag(text):
931 931 if type == 'n':
932 932 n += 1
933 933 # make a file with k lines per rev
934 934 writefile("mf", "\n".join(str(i) for i in xrange(0, n * linesperrev))
935 935 + "\n")
936 936
937 937 at = -1
938 938 atbranch = 'default'
939 939 for type, data in dagparser.parsedag(text):
940 940 if type == 'n':
941 941 ui.status('node %s\n' % str(data))
942 942 id, ps = data
943 943 p1 = ps[0]
944 944 if p1 != at:
945 945 update(ui, repo, node=str(p1), clean=True)
946 946 at = p1
947 947 if repo.dirstate.branch() != atbranch:
948 948 branch(ui, repo, atbranch, force=True)
949 949 if len(ps) > 1:
950 950 p2 = ps[1]
951 951 merge(ui, repo, node=p2)
952 952
953 953 if mergeable_file:
954 954 f = open("mf", "rb+")
955 955 try:
956 956 lines = f.read().split("\n")
957 957 lines[id * linesperrev] += " r%i" % id
958 958 f.seek(0)
959 959 f.write("\n".join(lines))
960 960 finally:
961 961 f.close()
962 962
963 963 if appended_file:
964 964 writefile("af", "r%i\n" % id, "ab")
965 965
966 966 if overwritten_file:
967 967 writefile("of", "r%i\n" % id)
968 968
969 969 if new_file:
970 970 writefile("nf%i" % id, "r%i\n" % id)
971 971
972 972 commit(ui, repo, addremove=True, message="r%i" % id, date=(id, 0))
973 973 at = id
974 974 elif type == 'l':
975 975 id, name = data
976 976 ui.status('tag %s\n' % name)
977 977 tag(ui, repo, name, local=True)
978 978 elif type == 'a':
979 979 ui.status('branch %s\n' % data)
980 980 atbranch = data
981 981 elif type in 'cC':
982 982 r = util.system(data, cwd=repo.root)
983 983 if r:
984 984 desc, r = util.explain_exit(r)
985 985 raise util.Abort(_('%s command %s') % (data, desc))
986 986
987 987 def debugcommands(ui, cmd='', *args):
988 988 """list all available commands and options"""
989 989 for cmd, vals in sorted(table.iteritems()):
990 990 cmd = cmd.split('|')[0].strip('^')
991 991 opts = ', '.join([i[1] for i in vals[1]])
992 992 ui.write('%s: %s\n' % (cmd, opts))
993 993
994 994 def debugcomplete(ui, cmd='', **opts):
995 995 """returns the completion list associated with the given command"""
996 996
997 997 if opts.get('options'):
998 998 options = []
999 999 otables = [globalopts]
1000 1000 if cmd:
1001 1001 aliases, entry = cmdutil.findcmd(cmd, table, False)
1002 1002 otables.append(entry[1])
1003 1003 for t in otables:
1004 1004 for o in t:
1005 1005 if "(DEPRECATED)" in o[3]:
1006 1006 continue
1007 1007 if o[0]:
1008 1008 options.append('-%s' % o[0])
1009 1009 options.append('--%s' % o[1])
1010 1010 ui.write("%s\n" % "\n".join(options))
1011 1011 return
1012 1012
1013 1013 cmdlist = cmdutil.findpossible(cmd, table)
1014 1014 if ui.verbose:
1015 1015 cmdlist = [' '.join(c[0]) for c in cmdlist.values()]
1016 1016 ui.write("%s\n" % "\n".join(sorted(cmdlist)))
1017 1017
1018 1018 def debugfsinfo(ui, path = "."):
1019 1019 """show information detected about current filesystem"""
1020 1020 open('.debugfsinfo', 'w').write('')
1021 1021 ui.write('exec: %s\n' % (util.checkexec(path) and 'yes' or 'no'))
1022 1022 ui.write('symlink: %s\n' % (util.checklink(path) and 'yes' or 'no'))
1023 1023 ui.write('case-sensitive: %s\n' % (util.checkcase('.debugfsinfo')
1024 1024 and 'yes' or 'no'))
1025 1025 os.unlink('.debugfsinfo')
1026 1026
1027 1027 def debugrebuildstate(ui, repo, rev="tip"):
1028 1028 """rebuild the dirstate as it would look like for the given revision"""
1029 1029 ctx = repo[rev]
1030 1030 wlock = repo.wlock()
1031 1031 try:
1032 1032 repo.dirstate.rebuild(ctx.node(), ctx.manifest())
1033 1033 finally:
1034 1034 wlock.release()
1035 1035
1036 1036 def debugcheckstate(ui, repo):
1037 1037 """validate the correctness of the current dirstate"""
1038 1038 parent1, parent2 = repo.dirstate.parents()
1039 1039 m1 = repo[parent1].manifest()
1040 1040 m2 = repo[parent2].manifest()
1041 1041 errors = 0
1042 1042 for f in repo.dirstate:
1043 1043 state = repo.dirstate[f]
1044 1044 if state in "nr" and f not in m1:
1045 1045 ui.warn(_("%s in state %s, but not in manifest1\n") % (f, state))
1046 1046 errors += 1
1047 1047 if state in "a" and f in m1:
1048 1048 ui.warn(_("%s in state %s, but also in manifest1\n") % (f, state))
1049 1049 errors += 1
1050 1050 if state in "m" and f not in m1 and f not in m2:
1051 1051 ui.warn(_("%s in state %s, but not in either manifest\n") %
1052 1052 (f, state))
1053 1053 errors += 1
1054 1054 for f in m1:
1055 1055 state = repo.dirstate[f]
1056 1056 if state not in "nrm":
1057 1057 ui.warn(_("%s in manifest1, but listed as state %s") % (f, state))
1058 1058 errors += 1
1059 1059 if errors:
1060 1060 error = _(".hg/dirstate inconsistent with current parent's manifest")
1061 1061 raise util.Abort(error)
1062 1062
1063 1063 def showconfig(ui, repo, *values, **opts):
1064 1064 """show combined config settings from all hgrc files
1065 1065
1066 1066 With no arguments, print names and values of all config items.
1067 1067
1068 1068 With one argument of the form section.name, print just the value
1069 1069 of that config item.
1070 1070
1071 1071 With multiple arguments, print names and values of all config
1072 1072 items with matching section names.
1073 1073
1074 1074 With --debug, the source (filename and line number) is printed
1075 1075 for each config item.
1076 1076
1077 1077 Returns 0 on success.
1078 1078 """
1079 1079
1080 1080 for f in util.rcpath():
1081 1081 ui.debug(_('read config from: %s\n') % f)
1082 1082 untrusted = bool(opts.get('untrusted'))
1083 1083 if values:
1084 1084 sections = [v for v in values if '.' not in v]
1085 1085 items = [v for v in values if '.' in v]
1086 1086 if len(items) > 1 or items and sections:
1087 1087 raise util.Abort(_('only one config item permitted'))
1088 1088 for section, name, value in ui.walkconfig(untrusted=untrusted):
1089 1089 sectname = section + '.' + name
1090 1090 if values:
1091 1091 for v in values:
1092 1092 if v == section:
1093 1093 ui.debug('%s: ' %
1094 1094 ui.configsource(section, name, untrusted))
1095 1095 ui.write('%s=%s\n' % (sectname, value))
1096 1096 elif v == sectname:
1097 1097 ui.debug('%s: ' %
1098 1098 ui.configsource(section, name, untrusted))
1099 1099 ui.write(value, '\n')
1100 1100 else:
1101 1101 ui.debug('%s: ' %
1102 1102 ui.configsource(section, name, untrusted))
1103 1103 ui.write('%s=%s\n' % (sectname, value))
1104 1104
1105 1105 def debugpushkey(ui, repopath, namespace, *keyinfo):
1106 1106 '''access the pushkey key/value protocol
1107 1107
1108 1108 With two args, list the keys in the given namespace.
1109 1109
1110 1110 With five args, set a key to new if it currently is set to old.
1111 1111 Reports success or failure.
1112 1112 '''
1113 1113
1114 1114 target = hg.repository(ui, repopath)
1115 1115 if keyinfo:
1116 1116 key, old, new = keyinfo
1117 1117 r = target.pushkey(namespace, key, old, new)
1118 1118 ui.status(str(r) + '\n')
1119 1119 return not(r)
1120 1120 else:
1121 1121 for k, v in target.listkeys(namespace).iteritems():
1122 1122 ui.write("%s\t%s\n" % (k.encode('string-escape'),
1123 1123 v.encode('string-escape')))
1124 1124
1125 1125 def debugrevspec(ui, repo, expr):
1126 1126 '''parse and apply a revision specification'''
1127 1127 if ui.verbose:
1128 1128 tree = revset.parse(expr)
1129 1129 ui.note(tree, "\n")
1130 1130 func = revset.match(expr)
1131 1131 for c in func(repo, range(len(repo))):
1132 1132 ui.write("%s\n" % c)
1133 1133
1134 1134 def debugsetparents(ui, repo, rev1, rev2=None):
1135 1135 """manually set the parents of the current working directory
1136 1136
1137 1137 This is useful for writing repository conversion tools, but should
1138 1138 be used with care.
1139 1139
1140 1140 Returns 0 on success.
1141 1141 """
1142 1142
1143 1143 if not rev2:
1144 1144 rev2 = hex(nullid)
1145 1145
1146 1146 wlock = repo.wlock()
1147 1147 try:
1148 1148 repo.dirstate.setparents(repo.lookup(rev1), repo.lookup(rev2))
1149 1149 finally:
1150 1150 wlock.release()
1151 1151
1152 1152 def debugstate(ui, repo, nodates=None):
1153 1153 """show the contents of the current dirstate"""
1154 1154 timestr = ""
1155 1155 showdate = not nodates
1156 1156 for file_, ent in sorted(repo.dirstate._map.iteritems()):
1157 1157 if showdate:
1158 1158 if ent[3] == -1:
1159 1159 # Pad or slice to locale representation
1160 1160 locale_len = len(time.strftime("%Y-%m-%d %H:%M:%S ",
1161 1161 time.localtime(0)))
1162 1162 timestr = 'unset'
1163 1163 timestr = (timestr[:locale_len] +
1164 1164 ' ' * (locale_len - len(timestr)))
1165 1165 else:
1166 1166 timestr = time.strftime("%Y-%m-%d %H:%M:%S ",
1167 1167 time.localtime(ent[3]))
1168 1168 if ent[1] & 020000:
1169 1169 mode = 'lnk'
1170 1170 else:
1171 1171 mode = '%3o' % (ent[1] & 0777)
1172 1172 ui.write("%c %s %10d %s%s\n" % (ent[0], mode, ent[2], timestr, file_))
1173 1173 for f in repo.dirstate.copies():
1174 1174 ui.write(_("copy: %s -> %s\n") % (repo.dirstate.copied(f), f))
1175 1175
1176 1176 def debugsub(ui, repo, rev=None):
1177 1177 if rev == '':
1178 1178 rev = None
1179 1179 for k, v in sorted(repo[rev].substate.items()):
1180 1180 ui.write('path %s\n' % k)
1181 1181 ui.write(' source %s\n' % v[0])
1182 1182 ui.write(' revision %s\n' % v[1])
1183 1183
1184 1184 def debugdag(ui, repo, file_=None, *revs, **opts):
1185 1185 """format the changelog or an index DAG as a concise textual description
1186 1186
1187 1187 If you pass a revlog index, the revlog's DAG is emitted. If you list
1188 1188 revision numbers, they get labelled in the output as rN.
1189 1189
1190 1190 Otherwise, the changelog DAG of the current repo is emitted.
1191 1191 """
1192 1192 spaces = opts.get('spaces')
1193 1193 dots = opts.get('dots')
1194 1194 if file_:
1195 1195 rlog = revlog.revlog(util.opener(os.getcwd(), audit=False), file_)
1196 1196 revs = set((int(r) for r in revs))
1197 1197 def events():
1198 1198 for r in rlog:
1199 1199 yield 'n', (r, list(set(p for p in rlog.parentrevs(r) if p != -1)))
1200 1200 if r in revs:
1201 1201 yield 'l', (r, "r%i" % r)
1202 1202 elif repo:
1203 1203 cl = repo.changelog
1204 1204 tags = opts.get('tags')
1205 1205 branches = opts.get('branches')
1206 1206 if tags:
1207 1207 labels = {}
1208 1208 for l, n in repo.tags().items():
1209 1209 labels.setdefault(cl.rev(n), []).append(l)
1210 1210 def events():
1211 1211 b = "default"
1212 1212 for r in cl:
1213 1213 if branches:
1214 1214 newb = cl.read(cl.node(r))[5]['branch']
1215 1215 if newb != b:
1216 1216 yield 'a', newb
1217 1217 b = newb
1218 1218 yield 'n', (r, list(set(p for p in cl.parentrevs(r) if p != -1)))
1219 1219 if tags:
1220 1220 ls = labels.get(r)
1221 1221 if ls:
1222 1222 for l in ls:
1223 1223 yield 'l', (r, l)
1224 1224 else:
1225 1225 raise util.Abort(_('need repo for changelog dag'))
1226 1226
1227 1227 for line in dagparser.dagtextlines(events(),
1228 1228 addspaces=spaces,
1229 1229 wraplabels=True,
1230 1230 wrapannotations=True,
1231 1231 wrapnonlinear=dots,
1232 1232 usedots=dots,
1233 1233 maxlinewidth=70):
1234 1234 ui.write(line)
1235 1235 ui.write("\n")
1236 1236
1237 1237 def debugdata(ui, repo, file_, rev):
1238 1238 """dump the contents of a data file revision"""
1239 1239 r = None
1240 1240 if repo:
1241 1241 filelog = repo.file(file_)
1242 1242 if len(filelog):
1243 1243 r = filelog
1244 1244 if not r:
1245 1245 r = revlog.revlog(util.opener(os.getcwd(), audit=False), file_[:-2] + ".i")
1246 1246 try:
1247 1247 ui.write(r.revision(r.lookup(rev)))
1248 1248 except KeyError:
1249 1249 raise util.Abort(_('invalid revision identifier %s') % rev)
1250 1250
1251 1251 def debugdate(ui, date, range=None, **opts):
1252 1252 """parse and display a date"""
1253 1253 if opts["extended"]:
1254 1254 d = util.parsedate(date, util.extendeddateformats)
1255 1255 else:
1256 1256 d = util.parsedate(date)
1257 1257 ui.write("internal: %s %s\n" % d)
1258 1258 ui.write("standard: %s\n" % util.datestr(d))
1259 1259 if range:
1260 1260 m = util.matchdate(range)
1261 1261 ui.write("match: %s\n" % m(d[0]))
1262 1262
1263 1263 def debugindex(ui, repo, file_, **opts):
1264 1264 """dump the contents of an index file"""
1265 1265 r = None
1266 1266 if repo:
1267 1267 filelog = repo.file(file_)
1268 1268 if len(filelog):
1269 1269 r = filelog
1270 1270
1271 1271 format = opts.get('format', 0)
1272 1272 if format not in (0, 1):
1273 1273 raise util.Abort("unknown format %d" % format)
1274 1274
1275 1275 if not r:
1276 1276 r = revlog.revlog(util.opener(os.getcwd(), audit=False), file_)
1277 1277
1278 1278 if format == 0:
1279 1279 ui.write(" rev offset length base linkrev"
1280 1280 " nodeid p1 p2\n")
1281 1281 elif format == 1:
1282 1282 ui.write(" rev flag offset length"
1283 1283 " size base link p1 p2 nodeid\n")
1284 1284
1285 1285 for i in r:
1286 1286 node = r.node(i)
1287 1287 if format == 0:
1288 1288 try:
1289 1289 pp = r.parents(node)
1290 1290 except:
1291 1291 pp = [nullid, nullid]
1292 1292 ui.write("% 6d % 9d % 7d % 6d % 7d %s %s %s\n" % (
1293 1293 i, r.start(i), r.length(i), r.base(i), r.linkrev(i),
1294 1294 short(node), short(pp[0]), short(pp[1])))
1295 1295 elif format == 1:
1296 1296 pr = r.parentrevs(i)
1297 1297 ui.write("% 6d %04x % 8d % 8d % 8d % 6d % 6d % 6d % 6d %s\n" % (
1298 1298 i, r.flags(i), r.start(i), r.length(i), r.rawsize(i),
1299 1299 r.base(i), r.linkrev(i), pr[0], pr[1], short(node)))
1300 1300
1301 1301 def debugindexdot(ui, repo, file_):
1302 1302 """dump an index DAG as a graphviz dot file"""
1303 1303 r = None
1304 1304 if repo:
1305 1305 filelog = repo.file(file_)
1306 1306 if len(filelog):
1307 1307 r = filelog
1308 1308 if not r:
1309 1309 r = revlog.revlog(util.opener(os.getcwd(), audit=False), file_)
1310 1310 ui.write("digraph G {\n")
1311 1311 for i in r:
1312 1312 node = r.node(i)
1313 1313 pp = r.parents(node)
1314 1314 ui.write("\t%d -> %d\n" % (r.rev(pp[0]), i))
1315 1315 if pp[1] != nullid:
1316 1316 ui.write("\t%d -> %d\n" % (r.rev(pp[1]), i))
1317 1317 ui.write("}\n")
1318 1318
1319 1319 def debuginstall(ui):
1320 1320 '''test Mercurial installation
1321 1321
1322 1322 Returns 0 on success.
1323 1323 '''
1324 1324
1325 1325 def writetemp(contents):
1326 1326 (fd, name) = tempfile.mkstemp(prefix="hg-debuginstall-")
1327 1327 f = os.fdopen(fd, "wb")
1328 1328 f.write(contents)
1329 1329 f.close()
1330 1330 return name
1331 1331
1332 1332 problems = 0
1333 1333
1334 1334 # encoding
1335 1335 ui.status(_("Checking encoding (%s)...\n") % encoding.encoding)
1336 1336 try:
1337 1337 encoding.fromlocal("test")
1338 1338 except util.Abort, inst:
1339 1339 ui.write(" %s\n" % inst)
1340 1340 ui.write(_(" (check that your locale is properly set)\n"))
1341 1341 problems += 1
1342 1342
1343 1343 # compiled modules
1344 1344 ui.status(_("Checking installed modules (%s)...\n")
1345 1345 % os.path.dirname(__file__))
1346 1346 try:
1347 1347 import bdiff, mpatch, base85, osutil
1348 1348 except Exception, inst:
1349 1349 ui.write(" %s\n" % inst)
1350 1350 ui.write(_(" One or more extensions could not be found"))
1351 1351 ui.write(_(" (check that you compiled the extensions)\n"))
1352 1352 problems += 1
1353 1353
1354 1354 # templates
1355 1355 ui.status(_("Checking templates...\n"))
1356 1356 try:
1357 1357 import templater
1358 1358 templater.templater(templater.templatepath("map-cmdline.default"))
1359 1359 except Exception, inst:
1360 1360 ui.write(" %s\n" % inst)
1361 1361 ui.write(_(" (templates seem to have been installed incorrectly)\n"))
1362 1362 problems += 1
1363 1363
1364 1364 # patch
1365 1365 ui.status(_("Checking patch...\n"))
1366 1366 patchproblems = 0
1367 1367 a = "1\n2\n3\n4\n"
1368 1368 b = "1\n2\n3\ninsert\n4\n"
1369 1369 fa = writetemp(a)
1370 1370 d = mdiff.unidiff(a, None, b, None, os.path.basename(fa),
1371 1371 os.path.basename(fa))
1372 1372 fd = writetemp(d)
1373 1373
1374 1374 files = {}
1375 1375 try:
1376 1376 patch.patch(fd, ui, cwd=os.path.dirname(fa), files=files)
1377 1377 except util.Abort, e:
1378 1378 ui.write(_(" patch call failed:\n"))
1379 1379 ui.write(" " + str(e) + "\n")
1380 1380 patchproblems += 1
1381 1381 else:
1382 1382 if list(files) != [os.path.basename(fa)]:
1383 1383 ui.write(_(" unexpected patch output!\n"))
1384 1384 patchproblems += 1
1385 1385 a = open(fa).read()
1386 1386 if a != b:
1387 1387 ui.write(_(" patch test failed!\n"))
1388 1388 patchproblems += 1
1389 1389
1390 1390 if patchproblems:
1391 1391 if ui.config('ui', 'patch'):
1392 1392 ui.write(_(" (Current patch tool may be incompatible with patch,"
1393 1393 " or misconfigured. Please check your configuration"
1394 1394 " file)\n"))
1395 1395 else:
1396 1396 ui.write(_(" Internal patcher failure, please report this error"
1397 1397 " to http://mercurial.selenic.com/wiki/BugTracker\n"))
1398 1398 problems += patchproblems
1399 1399
1400 1400 os.unlink(fa)
1401 1401 os.unlink(fd)
1402 1402
1403 1403 # editor
1404 1404 ui.status(_("Checking commit editor...\n"))
1405 1405 editor = ui.geteditor()
1406 1406 cmdpath = util.find_exe(editor) or util.find_exe(editor.split()[0])
1407 1407 if not cmdpath:
1408 1408 if editor == 'vi':
1409 1409 ui.write(_(" No commit editor set and can't find vi in PATH\n"))
1410 1410 ui.write(_(" (specify a commit editor in your configuration"
1411 1411 " file)\n"))
1412 1412 else:
1413 1413 ui.write(_(" Can't find editor '%s' in PATH\n") % editor)
1414 1414 ui.write(_(" (specify a commit editor in your configuration"
1415 1415 " file)\n"))
1416 1416 problems += 1
1417 1417
1418 1418 # check username
1419 1419 ui.status(_("Checking username...\n"))
1420 1420 try:
1421 1421 ui.username()
1422 1422 except util.Abort, e:
1423 1423 ui.write(" %s\n" % e)
1424 1424 ui.write(_(" (specify a username in your configuration file)\n"))
1425 1425 problems += 1
1426 1426
1427 1427 if not problems:
1428 1428 ui.status(_("No problems detected\n"))
1429 1429 else:
1430 1430 ui.write(_("%s problems detected,"
1431 1431 " please check your install!\n") % problems)
1432 1432
1433 1433 return problems
1434 1434
1435 1435 def debugrename(ui, repo, file1, *pats, **opts):
1436 1436 """dump rename information"""
1437 1437
1438 1438 ctx = repo[opts.get('rev')]
1439 1439 m = cmdutil.match(repo, (file1,) + pats, opts)
1440 1440 for abs in ctx.walk(m):
1441 1441 fctx = ctx[abs]
1442 1442 o = fctx.filelog().renamed(fctx.filenode())
1443 1443 rel = m.rel(abs)
1444 1444 if o:
1445 1445 ui.write(_("%s renamed from %s:%s\n") % (rel, o[0], hex(o[1])))
1446 1446 else:
1447 1447 ui.write(_("%s not renamed\n") % rel)
1448 1448
1449 1449 def debugwalk(ui, repo, *pats, **opts):
1450 1450 """show how files match on given patterns"""
1451 1451 m = cmdutil.match(repo, pats, opts)
1452 1452 items = list(repo.walk(m))
1453 1453 if not items:
1454 1454 return
1455 1455 fmt = 'f %%-%ds %%-%ds %%s' % (
1456 1456 max([len(abs) for abs in items]),
1457 1457 max([len(m.rel(abs)) for abs in items]))
1458 1458 for abs in items:
1459 1459 line = fmt % (abs, m.rel(abs), m.exact(abs) and 'exact' or '')
1460 1460 ui.write("%s\n" % line.rstrip())
1461 1461
1462 1462 def diff(ui, repo, *pats, **opts):
1463 1463 """diff repository (or selected files)
1464 1464
1465 1465 Show differences between revisions for the specified files.
1466 1466
1467 1467 Differences between files are shown using the unified diff format.
1468 1468
1469 1469 .. note::
1470 1470 diff may generate unexpected results for merges, as it will
1471 1471 default to comparing against the working directory's first
1472 1472 parent changeset if no revisions are specified.
1473 1473
1474 1474 When two revision arguments are given, then changes are shown
1475 1475 between those revisions. If only one revision is specified then
1476 1476 that revision is compared to the working directory, and, when no
1477 1477 revisions are specified, the working directory files are compared
1478 1478 to its parent.
1479 1479
1480 1480 Alternatively you can specify -c/--change with a revision to see
1481 1481 the changes in that changeset relative to its first parent.
1482 1482
1483 1483 Without the -a/--text option, diff will avoid generating diffs of
1484 1484 files it detects as binary. With -a, diff will generate a diff
1485 1485 anyway, probably with undesirable results.
1486 1486
1487 1487 Use the -g/--git option to generate diffs in the git extended diff
1488 1488 format. For more information, read :hg:`help diffs`.
1489 1489
1490 1490 Returns 0 on success.
1491 1491 """
1492 1492
1493 1493 revs = opts.get('rev')
1494 1494 change = opts.get('change')
1495 1495 stat = opts.get('stat')
1496 1496 reverse = opts.get('reverse')
1497 1497
1498 1498 if revs and change:
1499 1499 msg = _('cannot specify --rev and --change at the same time')
1500 1500 raise util.Abort(msg)
1501 1501 elif change:
1502 1502 node2 = repo.lookup(change)
1503 1503 node1 = repo[node2].parents()[0].node()
1504 1504 else:
1505 1505 node1, node2 = cmdutil.revpair(repo, revs)
1506 1506
1507 1507 if reverse:
1508 1508 node1, node2 = node2, node1
1509 1509
1510 1510 diffopts = patch.diffopts(ui, opts)
1511 1511 m = cmdutil.match(repo, pats, opts)
1512 1512 cmdutil.diffordiffstat(ui, repo, diffopts, node1, node2, m, stat=stat,
1513 1513 listsubrepos=opts.get('subrepos'))
1514 1514
1515 1515 def export(ui, repo, *changesets, **opts):
1516 1516 """dump the header and diffs for one or more changesets
1517 1517
1518 1518 Print the changeset header and diffs for one or more revisions.
1519 1519
1520 1520 The information shown in the changeset header is: author, date,
1521 1521 branch name (if non-default), changeset hash, parent(s) and commit
1522 1522 comment.
1523 1523
1524 1524 .. note::
1525 1525 export may generate unexpected diff output for merge
1526 1526 changesets, as it will compare the merge changeset against its
1527 1527 first parent only.
1528 1528
1529 1529 Output may be to a file, in which case the name of the file is
1530 1530 given using a format string. The formatting rules are as follows:
1531 1531
1532 1532 :``%%``: literal "%" character
1533 1533 :``%H``: changeset hash (40 hexadecimal digits)
1534 1534 :``%N``: number of patches being generated
1535 1535 :``%R``: changeset revision number
1536 1536 :``%b``: basename of the exporting repository
1537 1537 :``%h``: short-form changeset hash (12 hexadecimal digits)
1538 1538 :``%n``: zero-padded sequence number, starting at 1
1539 1539 :``%r``: zero-padded changeset revision number
1540 1540
1541 1541 Without the -a/--text option, export will avoid generating diffs
1542 1542 of files it detects as binary. With -a, export will generate a
1543 1543 diff anyway, probably with undesirable results.
1544 1544
1545 1545 Use the -g/--git option to generate diffs in the git extended diff
1546 1546 format. See :hg:`help diffs` for more information.
1547 1547
1548 1548 With the --switch-parent option, the diff will be against the
1549 1549 second parent. It can be useful to review a merge.
1550 1550
1551 1551 Returns 0 on success.
1552 1552 """
1553 1553 changesets += tuple(opts.get('rev', []))
1554 1554 if not changesets:
1555 1555 raise util.Abort(_("export requires at least one changeset"))
1556 1556 revs = cmdutil.revrange(repo, changesets)
1557 1557 if len(revs) > 1:
1558 1558 ui.note(_('exporting patches:\n'))
1559 1559 else:
1560 1560 ui.note(_('exporting patch:\n'))
1561 1561 cmdutil.export(repo, revs, template=opts.get('output'),
1562 1562 switch_parent=opts.get('switch_parent'),
1563 1563 opts=patch.diffopts(ui, opts))
1564 1564
1565 1565 def forget(ui, repo, *pats, **opts):
1566 1566 """forget the specified files on the next commit
1567 1567
1568 1568 Mark the specified files so they will no longer be tracked
1569 1569 after the next commit.
1570 1570
1571 1571 This only removes files from the current branch, not from the
1572 1572 entire project history, and it does not delete them from the
1573 1573 working directory.
1574 1574
1575 1575 To undo a forget before the next commit, see :hg:`add`.
1576 1576
1577 1577 Returns 0 on success.
1578 1578 """
1579 1579
1580 1580 if not pats:
1581 1581 raise util.Abort(_('no files specified'))
1582 1582
1583 1583 m = cmdutil.match(repo, pats, opts)
1584 1584 s = repo.status(match=m, clean=True)
1585 1585 forget = sorted(s[0] + s[1] + s[3] + s[6])
1586 1586 errs = 0
1587 1587
1588 1588 for f in m.files():
1589 1589 if f not in repo.dirstate and not os.path.isdir(m.rel(f)):
1590 1590 ui.warn(_('not removing %s: file is already untracked\n')
1591 1591 % m.rel(f))
1592 1592 errs = 1
1593 1593
1594 1594 for f in forget:
1595 1595 if ui.verbose or not m.exact(f):
1596 1596 ui.status(_('removing %s\n') % m.rel(f))
1597 1597
1598 1598 repo[None].remove(forget, unlink=False)
1599 1599 return errs
1600 1600
1601 1601 def grep(ui, repo, pattern, *pats, **opts):
1602 1602 """search for a pattern in specified files and revisions
1603 1603
1604 1604 Search revisions of files for a regular expression.
1605 1605
1606 1606 This command behaves differently than Unix grep. It only accepts
1607 1607 Python/Perl regexps. It searches repository history, not the
1608 1608 working directory. It always prints the revision number in which a
1609 1609 match appears.
1610 1610
1611 1611 By default, grep only prints output for the first revision of a
1612 1612 file in which it finds a match. To get it to print every revision
1613 1613 that contains a change in match status ("-" for a match that
1614 1614 becomes a non-match, or "+" for a non-match that becomes a match),
1615 1615 use the --all flag.
1616 1616
1617 1617 Returns 0 if a match is found, 1 otherwise.
1618 1618 """
1619 1619 reflags = 0
1620 1620 if opts.get('ignore_case'):
1621 1621 reflags |= re.I
1622 1622 try:
1623 1623 regexp = re.compile(pattern, reflags)
1624 1624 except re.error, inst:
1625 1625 ui.warn(_("grep: invalid match pattern: %s\n") % inst)
1626 1626 return 1
1627 1627 sep, eol = ':', '\n'
1628 1628 if opts.get('print0'):
1629 1629 sep = eol = '\0'
1630 1630
1631 1631 getfile = util.lrucachefunc(repo.file)
1632 1632
1633 1633 def matchlines(body):
1634 1634 begin = 0
1635 1635 linenum = 0
1636 1636 while True:
1637 1637 match = regexp.search(body, begin)
1638 1638 if not match:
1639 1639 break
1640 1640 mstart, mend = match.span()
1641 1641 linenum += body.count('\n', begin, mstart) + 1
1642 1642 lstart = body.rfind('\n', begin, mstart) + 1 or begin
1643 1643 begin = body.find('\n', mend) + 1 or len(body)
1644 1644 lend = begin - 1
1645 1645 yield linenum, mstart - lstart, mend - lstart, body[lstart:lend]
1646 1646
1647 1647 class linestate(object):
1648 1648 def __init__(self, line, linenum, colstart, colend):
1649 1649 self.line = line
1650 1650 self.linenum = linenum
1651 1651 self.colstart = colstart
1652 1652 self.colend = colend
1653 1653
1654 1654 def __hash__(self):
1655 1655 return hash((self.linenum, self.line))
1656 1656
1657 1657 def __eq__(self, other):
1658 1658 return self.line == other.line
1659 1659
1660 1660 matches = {}
1661 1661 copies = {}
1662 1662 def grepbody(fn, rev, body):
1663 1663 matches[rev].setdefault(fn, [])
1664 1664 m = matches[rev][fn]
1665 1665 for lnum, cstart, cend, line in matchlines(body):
1666 1666 s = linestate(line, lnum, cstart, cend)
1667 1667 m.append(s)
1668 1668
1669 1669 def difflinestates(a, b):
1670 1670 sm = difflib.SequenceMatcher(None, a, b)
1671 1671 for tag, alo, ahi, blo, bhi in sm.get_opcodes():
1672 1672 if tag == 'insert':
1673 1673 for i in xrange(blo, bhi):
1674 1674 yield ('+', b[i])
1675 1675 elif tag == 'delete':
1676 1676 for i in xrange(alo, ahi):
1677 1677 yield ('-', a[i])
1678 1678 elif tag == 'replace':
1679 1679 for i in xrange(alo, ahi):
1680 1680 yield ('-', a[i])
1681 1681 for i in xrange(blo, bhi):
1682 1682 yield ('+', b[i])
1683 1683
1684 1684 def display(fn, ctx, pstates, states):
1685 1685 rev = ctx.rev()
1686 1686 datefunc = ui.quiet and util.shortdate or util.datestr
1687 1687 found = False
1688 1688 filerevmatches = {}
1689 1689 if opts.get('all'):
1690 1690 iter = difflinestates(pstates, states)
1691 1691 else:
1692 1692 iter = [('', l) for l in states]
1693 1693 for change, l in iter:
1694 1694 cols = [fn, str(rev)]
1695 1695 before, match, after = None, None, None
1696 1696 if opts.get('line_number'):
1697 1697 cols.append(str(l.linenum))
1698 1698 if opts.get('all'):
1699 1699 cols.append(change)
1700 1700 if opts.get('user'):
1701 1701 cols.append(ui.shortuser(ctx.user()))
1702 1702 if opts.get('date'):
1703 1703 cols.append(datefunc(ctx.date()))
1704 1704 if opts.get('files_with_matches'):
1705 1705 c = (fn, rev)
1706 1706 if c in filerevmatches:
1707 1707 continue
1708 1708 filerevmatches[c] = 1
1709 1709 else:
1710 1710 before = l.line[:l.colstart]
1711 1711 match = l.line[l.colstart:l.colend]
1712 1712 after = l.line[l.colend:]
1713 1713 ui.write(sep.join(cols))
1714 1714 if before is not None:
1715 1715 ui.write(sep + before)
1716 1716 ui.write(match, label='grep.match')
1717 1717 ui.write(after)
1718 1718 ui.write(eol)
1719 1719 found = True
1720 1720 return found
1721 1721
1722 1722 skip = {}
1723 1723 revfiles = {}
1724 1724 matchfn = cmdutil.match(repo, pats, opts)
1725 1725 found = False
1726 1726 follow = opts.get('follow')
1727 1727
1728 1728 def prep(ctx, fns):
1729 1729 rev = ctx.rev()
1730 1730 pctx = ctx.parents()[0]
1731 1731 parent = pctx.rev()
1732 1732 matches.setdefault(rev, {})
1733 1733 matches.setdefault(parent, {})
1734 1734 files = revfiles.setdefault(rev, [])
1735 1735 for fn in fns:
1736 1736 flog = getfile(fn)
1737 1737 try:
1738 1738 fnode = ctx.filenode(fn)
1739 1739 except error.LookupError:
1740 1740 continue
1741 1741
1742 1742 copied = flog.renamed(fnode)
1743 1743 copy = follow and copied and copied[0]
1744 1744 if copy:
1745 1745 copies.setdefault(rev, {})[fn] = copy
1746 1746 if fn in skip:
1747 1747 if copy:
1748 1748 skip[copy] = True
1749 1749 continue
1750 1750 files.append(fn)
1751 1751
1752 1752 if fn not in matches[rev]:
1753 1753 grepbody(fn, rev, flog.read(fnode))
1754 1754
1755 1755 pfn = copy or fn
1756 1756 if pfn not in matches[parent]:
1757 1757 try:
1758 1758 fnode = pctx.filenode(pfn)
1759 1759 grepbody(pfn, parent, flog.read(fnode))
1760 1760 except error.LookupError:
1761 1761 pass
1762 1762
1763 1763 for ctx in cmdutil.walkchangerevs(repo, matchfn, opts, prep):
1764 1764 rev = ctx.rev()
1765 1765 parent = ctx.parents()[0].rev()
1766 1766 for fn in sorted(revfiles.get(rev, [])):
1767 1767 states = matches[rev][fn]
1768 1768 copy = copies.get(rev, {}).get(fn)
1769 1769 if fn in skip:
1770 1770 if copy:
1771 1771 skip[copy] = True
1772 1772 continue
1773 1773 pstates = matches.get(parent, {}).get(copy or fn, [])
1774 1774 if pstates or states:
1775 1775 r = display(fn, ctx, pstates, states)
1776 1776 found = found or r
1777 1777 if r and not opts.get('all'):
1778 1778 skip[fn] = True
1779 1779 if copy:
1780 1780 skip[copy] = True
1781 1781 del matches[rev]
1782 1782 del revfiles[rev]
1783 1783
1784 1784 return not found
1785 1785
1786 1786 def heads(ui, repo, *branchrevs, **opts):
1787 1787 """show current repository heads or show branch heads
1788 1788
1789 1789 With no arguments, show all repository branch heads.
1790 1790
1791 1791 Repository "heads" are changesets with no child changesets. They are
1792 1792 where development generally takes place and are the usual targets
1793 1793 for update and merge operations. Branch heads are changesets that have
1794 1794 no child changeset on the same branch.
1795 1795
1796 1796 If one or more REVs are given, only branch heads on the branches
1797 1797 associated with the specified changesets are shown.
1798 1798
1799 1799 If -c/--closed is specified, also show branch heads marked closed
1800 1800 (see :hg:`commit --close-branch`).
1801 1801
1802 1802 If STARTREV is specified, only those heads that are descendants of
1803 1803 STARTREV will be displayed.
1804 1804
1805 1805 If -t/--topo is specified, named branch mechanics will be ignored and only
1806 1806 changesets without children will be shown.
1807 1807
1808 1808 Returns 0 if matching heads are found, 1 if not.
1809 1809 """
1810 1810
1811 1811 if opts.get('rev'):
1812 1812 start = repo.lookup(opts['rev'])
1813 1813 else:
1814 1814 start = None
1815 1815
1816 1816 if opts.get('topo'):
1817 1817 heads = [repo[h] for h in repo.heads(start)]
1818 1818 else:
1819 1819 heads = []
1820 1820 for b, ls in repo.branchmap().iteritems():
1821 1821 if start is None:
1822 1822 heads += [repo[h] for h in ls]
1823 1823 continue
1824 1824 startrev = repo.changelog.rev(start)
1825 1825 descendants = set(repo.changelog.descendants(startrev))
1826 1826 descendants.add(startrev)
1827 1827 rev = repo.changelog.rev
1828 1828 heads += [repo[h] for h in ls if rev(h) in descendants]
1829 1829
1830 1830 if branchrevs:
1831 1831 decode, encode = encoding.fromlocal, encoding.tolocal
1832 1832 branches = set(repo[decode(br)].branch() for br in branchrevs)
1833 1833 heads = [h for h in heads if h.branch() in branches]
1834 1834
1835 1835 if not opts.get('closed'):
1836 1836 heads = [h for h in heads if not h.extra().get('close')]
1837 1837
1838 1838 if opts.get('active') and branchrevs:
1839 1839 dagheads = repo.heads(start)
1840 1840 heads = [h for h in heads if h.node() in dagheads]
1841 1841
1842 1842 if branchrevs:
1843 1843 haveheads = set(h.branch() for h in heads)
1844 1844 if branches - haveheads:
1845 1845 headless = ', '.join(encode(b) for b in branches - haveheads)
1846 1846 msg = _('no open branch heads found on branches %s')
1847 1847 if opts.get('rev'):
1848 1848 msg += _(' (started at %s)' % opts['rev'])
1849 1849 ui.warn((msg + '\n') % headless)
1850 1850
1851 1851 if not heads:
1852 1852 return 1
1853 1853
1854 1854 heads = sorted(heads, key=lambda x: -x.rev())
1855 1855 displayer = cmdutil.show_changeset(ui, repo, opts)
1856 1856 for ctx in heads:
1857 1857 displayer.show(ctx)
1858 1858 displayer.close()
1859 1859
1860 1860 def help_(ui, name=None, with_version=False, unknowncmd=False):
1861 1861 """show help for a given topic or a help overview
1862 1862
1863 1863 With no arguments, print a list of commands with short help messages.
1864 1864
1865 1865 Given a topic, extension, or command name, print help for that
1866 1866 topic.
1867 1867
1868 1868 Returns 0 if successful.
1869 1869 """
1870 1870 option_lists = []
1871 1871 textwidth = ui.termwidth() - 2
1872 1872
1873 1873 def addglobalopts(aliases):
1874 1874 if ui.verbose:
1875 1875 option_lists.append((_("global options:"), globalopts))
1876 1876 if name == 'shortlist':
1877 1877 option_lists.append((_('use "hg help" for the full list '
1878 1878 'of commands'), ()))
1879 1879 else:
1880 1880 if name == 'shortlist':
1881 1881 msg = _('use "hg help" for the full list of commands '
1882 1882 'or "hg -v" for details')
1883 1883 elif aliases:
1884 1884 msg = _('use "hg -v help%s" to show aliases and '
1885 1885 'global options') % (name and " " + name or "")
1886 1886 else:
1887 1887 msg = _('use "hg -v help %s" to show global options') % name
1888 1888 option_lists.append((msg, ()))
1889 1889
1890 1890 def helpcmd(name):
1891 1891 if with_version:
1892 1892 version_(ui)
1893 1893 ui.write('\n')
1894 1894
1895 1895 try:
1896 1896 aliases, entry = cmdutil.findcmd(name, table, strict=unknowncmd)
1897 1897 except error.AmbiguousCommand, inst:
1898 1898 # py3k fix: except vars can't be used outside the scope of the
1899 1899 # except block, nor can be used inside a lambda. python issue4617
1900 1900 prefix = inst.args[0]
1901 1901 select = lambda c: c.lstrip('^').startswith(prefix)
1902 1902 helplist(_('list of commands:\n\n'), select)
1903 1903 return
1904 1904
1905 1905 # check if it's an invalid alias and display its error if it is
1906 1906 if getattr(entry[0], 'badalias', False):
1907 1907 if not unknowncmd:
1908 1908 entry[0](ui)
1909 1909 return
1910 1910
1911 1911 # synopsis
1912 1912 if len(entry) > 2:
1913 1913 if entry[2].startswith('hg'):
1914 1914 ui.write("%s\n" % entry[2])
1915 1915 else:
1916 1916 ui.write('hg %s %s\n' % (aliases[0], entry[2]))
1917 1917 else:
1918 1918 ui.write('hg %s\n' % aliases[0])
1919 1919
1920 1920 # aliases
1921 1921 if not ui.quiet and len(aliases) > 1:
1922 1922 ui.write(_("\naliases: %s\n") % ', '.join(aliases[1:]))
1923 1923
1924 1924 # description
1925 1925 doc = gettext(entry[0].__doc__)
1926 1926 if not doc:
1927 1927 doc = _("(no help text available)")
1928 1928 if hasattr(entry[0], 'definition'): # aliased command
1929 1929 if entry[0].definition.startswith('!'): # shell alias
1930 1930 doc = _('shell alias for::\n\n %s') % entry[0].definition[1:]
1931 1931 else:
1932 1932 doc = _('alias for: hg %s\n\n%s') % (entry[0].definition, doc)
1933 1933 if ui.quiet:
1934 1934 doc = doc.splitlines()[0]
1935 1935 keep = ui.verbose and ['verbose'] or []
1936 1936 formatted, pruned = minirst.format(doc, textwidth, keep=keep)
1937 1937 ui.write("\n%s\n" % formatted)
1938 1938 if pruned:
1939 1939 ui.write(_('\nuse "hg -v help %s" to show verbose help\n') % name)
1940 1940
1941 1941 if not ui.quiet:
1942 1942 # options
1943 1943 if entry[1]:
1944 1944 option_lists.append((_("options:\n"), entry[1]))
1945 1945
1946 1946 addglobalopts(False)
1947 1947
1948 1948 def helplist(header, select=None):
1949 1949 h = {}
1950 1950 cmds = {}
1951 1951 for c, e in table.iteritems():
1952 1952 f = c.split("|", 1)[0]
1953 1953 if select and not select(f):
1954 1954 continue
1955 1955 if (not select and name != 'shortlist' and
1956 1956 e[0].__module__ != __name__):
1957 1957 continue
1958 1958 if name == "shortlist" and not f.startswith("^"):
1959 1959 continue
1960 1960 f = f.lstrip("^")
1961 1961 if not ui.debugflag and f.startswith("debug"):
1962 1962 continue
1963 1963 doc = e[0].__doc__
1964 1964 if doc and 'DEPRECATED' in doc and not ui.verbose:
1965 1965 continue
1966 1966 doc = gettext(doc)
1967 1967 if not doc:
1968 1968 doc = _("(no help text available)")
1969 1969 h[f] = doc.splitlines()[0].rstrip()
1970 1970 cmds[f] = c.lstrip("^")
1971 1971
1972 1972 if not h:
1973 1973 ui.status(_('no commands defined\n'))
1974 1974 return
1975 1975
1976 1976 ui.status(header)
1977 1977 fns = sorted(h)
1978 1978 m = max(map(len, fns))
1979 1979 for f in fns:
1980 1980 if ui.verbose:
1981 1981 commands = cmds[f].replace("|",", ")
1982 1982 ui.write(" %s:\n %s\n"%(commands, h[f]))
1983 1983 else:
1984 1984 ui.write('%s\n' % (util.wrap(h[f], textwidth,
1985 1985 initindent=' %-*s ' % (m, f),
1986 1986 hangindent=' ' * (m + 4))))
1987 1987
1988 1988 if not ui.quiet:
1989 1989 addglobalopts(True)
1990 1990
1991 1991 def helptopic(name):
1992 1992 for names, header, doc in help.helptable:
1993 1993 if name in names:
1994 1994 break
1995 1995 else:
1996 1996 raise error.UnknownCommand(name)
1997 1997
1998 1998 # description
1999 1999 if not doc:
2000 2000 doc = _("(no help text available)")
2001 2001 if hasattr(doc, '__call__'):
2002 2002 doc = doc()
2003 2003
2004 2004 ui.write("%s\n\n" % header)
2005 2005 ui.write("%s\n" % minirst.format(doc, textwidth, indent=4))
2006 2006
2007 2007 def helpext(name):
2008 2008 try:
2009 2009 mod = extensions.find(name)
2010 2010 doc = gettext(mod.__doc__) or _('no help text available')
2011 2011 except KeyError:
2012 2012 mod = None
2013 2013 doc = extensions.disabledext(name)
2014 2014 if not doc:
2015 2015 raise error.UnknownCommand(name)
2016 2016
2017 2017 if '\n' not in doc:
2018 2018 head, tail = doc, ""
2019 2019 else:
2020 2020 head, tail = doc.split('\n', 1)
2021 2021 ui.write(_('%s extension - %s\n\n') % (name.split('.')[-1], head))
2022 2022 if tail:
2023 2023 ui.write(minirst.format(tail, textwidth))
2024 2024 ui.status('\n\n')
2025 2025
2026 2026 if mod:
2027 2027 try:
2028 2028 ct = mod.cmdtable
2029 2029 except AttributeError:
2030 2030 ct = {}
2031 2031 modcmds = set([c.split('|', 1)[0] for c in ct])
2032 2032 helplist(_('list of commands:\n\n'), modcmds.__contains__)
2033 2033 else:
2034 2034 ui.write(_('use "hg help extensions" for information on enabling '
2035 2035 'extensions\n'))
2036 2036
2037 2037 def helpextcmd(name):
2038 2038 cmd, ext, mod = extensions.disabledcmd(name, ui.config('ui', 'strict'))
2039 2039 doc = gettext(mod.__doc__).splitlines()[0]
2040 2040
2041 2041 msg = help.listexts(_("'%s' is provided by the following "
2042 2042 "extension:") % cmd, {ext: doc}, len(ext),
2043 2043 indent=4)
2044 2044 ui.write(minirst.format(msg, textwidth))
2045 2045 ui.write('\n\n')
2046 2046 ui.write(_('use "hg help extensions" for information on enabling '
2047 2047 'extensions\n'))
2048 2048
2049 2049 help.addtopichook('revsets', revset.makedoc)
2050 2050
2051 2051 if name and name != 'shortlist':
2052 2052 i = None
2053 2053 if unknowncmd:
2054 2054 queries = (helpextcmd,)
2055 2055 else:
2056 2056 queries = (helptopic, helpcmd, helpext, helpextcmd)
2057 2057 for f in queries:
2058 2058 try:
2059 2059 f(name)
2060 2060 i = None
2061 2061 break
2062 2062 except error.UnknownCommand, inst:
2063 2063 i = inst
2064 2064 if i:
2065 2065 raise i
2066 2066
2067 2067 else:
2068 2068 # program name
2069 2069 if ui.verbose or with_version:
2070 2070 version_(ui)
2071 2071 else:
2072 2072 ui.status(_("Mercurial Distributed SCM\n"))
2073 2073 ui.status('\n')
2074 2074
2075 2075 # list of commands
2076 2076 if name == "shortlist":
2077 2077 header = _('basic commands:\n\n')
2078 2078 else:
2079 2079 header = _('list of commands:\n\n')
2080 2080
2081 2081 helplist(header)
2082 2082 if name != 'shortlist':
2083 2083 exts, maxlength = extensions.enabled()
2084 2084 text = help.listexts(_('enabled extensions:'), exts, maxlength)
2085 2085 if text:
2086 2086 ui.write("\n%s\n" % minirst.format(text, textwidth))
2087 2087
2088 2088 # list all option lists
2089 2089 opt_output = []
2090 2090 multioccur = False
2091 2091 for title, options in option_lists:
2092 2092 opt_output.append(("\n%s" % title, None))
2093 2093 for option in options:
2094 2094 if len(option) == 5:
2095 2095 shortopt, longopt, default, desc, optlabel = option
2096 2096 else:
2097 2097 shortopt, longopt, default, desc = option
2098 2098 optlabel = _("VALUE") # default label
2099 2099
2100 2100 if _("DEPRECATED") in desc and not ui.verbose:
2101 2101 continue
2102 2102 if isinstance(default, list):
2103 2103 numqualifier = " %s [+]" % optlabel
2104 2104 multioccur = True
2105 2105 elif (default is not None) and not isinstance(default, bool):
2106 2106 numqualifier = " %s" % optlabel
2107 2107 else:
2108 2108 numqualifier = ""
2109 2109 opt_output.append(("%2s%s" %
2110 2110 (shortopt and "-%s" % shortopt,
2111 2111 longopt and " --%s%s" %
2112 2112 (longopt, numqualifier)),
2113 2113 "%s%s" % (desc,
2114 2114 default
2115 2115 and _(" (default: %s)") % default
2116 2116 or "")))
2117 2117 if multioccur:
2118 2118 msg = _("\n[+] marked option can be specified multiple times")
2119 2119 if ui.verbose and name != 'shortlist':
2120 2120 opt_output.append((msg, None))
2121 2121 else:
2122 2122 opt_output.insert(-1, (msg, None))
2123 2123
2124 2124 if not name:
2125 2125 ui.write(_("\nadditional help topics:\n\n"))
2126 2126 topics = []
2127 2127 for names, header, doc in help.helptable:
2128 2128 topics.append((sorted(names, key=len, reverse=True)[0], header))
2129 2129 topics_len = max([len(s[0]) for s in topics])
2130 2130 for t, desc in topics:
2131 2131 ui.write(" %-*s %s\n" % (topics_len, t, desc))
2132 2132
2133 2133 if opt_output:
2134 2134 colwidth = encoding.colwidth
2135 2135 # normalize: (opt or message, desc or None, width of opt)
2136 2136 entries = [desc and (opt, desc, colwidth(opt)) or (opt, None, 0)
2137 2137 for opt, desc in opt_output]
2138 2138 hanging = max([e[2] for e in entries])
2139 2139 for opt, desc, width in entries:
2140 2140 if desc:
2141 2141 initindent = ' %s%s ' % (opt, ' ' * (hanging - width))
2142 2142 hangindent = ' ' * (hanging + 3)
2143 2143 ui.write('%s\n' % (util.wrap(desc, textwidth,
2144 2144 initindent=initindent,
2145 2145 hangindent=hangindent)))
2146 2146 else:
2147 2147 ui.write("%s\n" % opt)
2148 2148
2149 2149 def identify(ui, repo, source=None,
2150 2150 rev=None, num=None, id=None, branch=None, tags=None):
2151 2151 """identify the working copy or specified revision
2152 2152
2153 2153 With no revision, print a summary of the current state of the
2154 2154 repository.
2155 2155
2156 2156 Specifying a path to a repository root or Mercurial bundle will
2157 2157 cause lookup to operate on that repository/bundle.
2158 2158
2159 2159 This summary identifies the repository state using one or two
2160 2160 parent hash identifiers, followed by a "+" if there are
2161 2161 uncommitted changes in the working directory, a list of tags for
2162 2162 this revision and a branch name for non-default branches.
2163 2163
2164 2164 Returns 0 if successful.
2165 2165 """
2166 2166
2167 2167 if not repo and not source:
2168 2168 raise util.Abort(_("there is no Mercurial repository here "
2169 2169 "(.hg not found)"))
2170 2170
2171 2171 hexfunc = ui.debugflag and hex or short
2172 2172 default = not (num or id or branch or tags)
2173 2173 output = []
2174 2174
2175 2175 revs = []
2176 2176 if source:
2177 2177 source, branches = hg.parseurl(ui.expandpath(source))
2178 2178 repo = hg.repository(ui, source)
2179 2179 revs, checkout = hg.addbranchrevs(repo, repo, branches, None)
2180 2180
2181 2181 if not repo.local():
2182 2182 if not rev and revs:
2183 2183 rev = revs[0]
2184 2184 if not rev:
2185 2185 rev = "tip"
2186 2186 if num or branch or tags:
2187 2187 raise util.Abort(
2188 2188 "can't query remote revision number, branch, or tags")
2189 2189 output = [hexfunc(repo.lookup(rev))]
2190 2190 elif not rev:
2191 2191 ctx = repo[None]
2192 2192 parents = ctx.parents()
2193 2193 changed = False
2194 2194 if default or id or num:
2195 2195 changed = util.any(repo.status())
2196 2196 if default or id:
2197 2197 output = ["%s%s" % ('+'.join([hexfunc(p.node()) for p in parents]),
2198 2198 (changed) and "+" or "")]
2199 2199 if num:
2200 2200 output.append("%s%s" % ('+'.join([str(p.rev()) for p in parents]),
2201 2201 (changed) and "+" or ""))
2202 2202 else:
2203 2203 ctx = repo[rev]
2204 2204 if default or id:
2205 2205 output = [hexfunc(ctx.node())]
2206 2206 if num:
2207 2207 output.append(str(ctx.rev()))
2208 2208
2209 2209 if repo.local() and default and not ui.quiet:
2210 2210 b = encoding.tolocal(ctx.branch())
2211 2211 if b != 'default':
2212 2212 output.append("(%s)" % b)
2213 2213
2214 2214 # multiple tags for a single parent separated by '/'
2215 2215 t = "/".join(ctx.tags())
2216 2216 if t:
2217 2217 output.append(t)
2218 2218
2219 2219 if branch:
2220 2220 output.append(encoding.tolocal(ctx.branch()))
2221 2221
2222 2222 if tags:
2223 2223 output.extend(ctx.tags())
2224 2224
2225 2225 ui.write("%s\n" % ' '.join(output))
2226 2226
2227 2227 def import_(ui, repo, patch1, *patches, **opts):
2228 2228 """import an ordered set of patches
2229 2229
2230 2230 Import a list of patches and commit them individually (unless
2231 2231 --no-commit is specified).
2232 2232
2233 2233 If there are outstanding changes in the working directory, import
2234 2234 will abort unless given the -f/--force flag.
2235 2235
2236 2236 You can import a patch straight from a mail message. Even patches
2237 2237 as attachments work (to use the body part, it must have type
2238 2238 text/plain or text/x-patch). From and Subject headers of email
2239 2239 message are used as default committer and commit message. All
2240 2240 text/plain body parts before first diff are added to commit
2241 2241 message.
2242 2242
2243 2243 If the imported patch was generated by :hg:`export`, user and
2244 2244 description from patch override values from message headers and
2245 2245 body. Values given on command line with -m/--message and -u/--user
2246 2246 override these.
2247 2247
2248 2248 If --exact is specified, import will set the working directory to
2249 2249 the parent of each patch before applying it, and will abort if the
2250 2250 resulting changeset has a different ID than the one recorded in
2251 2251 the patch. This may happen due to character set problems or other
2252 2252 deficiencies in the text patch format.
2253 2253
2254 2254 With -s/--similarity, hg will attempt to discover renames and
2255 2255 copies in the patch in the same way as 'addremove'.
2256 2256
2257 2257 To read a patch from standard input, use "-" as the patch name. If
2258 2258 a URL is specified, the patch will be downloaded from it.
2259 2259 See :hg:`help dates` for a list of formats valid for -d/--date.
2260 2260
2261 2261 Returns 0 on success.
2262 2262 """
2263 2263 patches = (patch1,) + patches
2264 2264
2265 2265 date = opts.get('date')
2266 2266 if date:
2267 2267 opts['date'] = util.parsedate(date)
2268 2268
2269 2269 try:
2270 2270 sim = float(opts.get('similarity') or 0)
2271 2271 except ValueError:
2272 2272 raise util.Abort(_('similarity must be a number'))
2273 2273 if sim < 0 or sim > 100:
2274 2274 raise util.Abort(_('similarity must be between 0 and 100'))
2275 2275
2276 2276 if opts.get('exact') or not opts.get('force'):
2277 2277 cmdutil.bail_if_changed(repo)
2278 2278
2279 2279 d = opts["base"]
2280 2280 strip = opts["strip"]
2281 2281 wlock = lock = None
2282 2282
2283 2283 def tryone(ui, hunk):
2284 2284 tmpname, message, user, date, branch, nodeid, p1, p2 = \
2285 2285 patch.extract(ui, hunk)
2286 2286
2287 2287 if not tmpname:
2288 2288 return None
2289 2289 commitid = _('to working directory')
2290 2290
2291 2291 try:
2292 2292 cmdline_message = cmdutil.logmessage(opts)
2293 2293 if cmdline_message:
2294 2294 # pickup the cmdline msg
2295 2295 message = cmdline_message
2296 2296 elif message:
2297 2297 # pickup the patch msg
2298 2298 message = message.strip()
2299 2299 else:
2300 2300 # launch the editor
2301 2301 message = None
2302 2302 ui.debug('message:\n%s\n' % message)
2303 2303
2304 2304 wp = repo.parents()
2305 2305 if opts.get('exact'):
2306 2306 if not nodeid or not p1:
2307 2307 raise util.Abort(_('not a Mercurial patch'))
2308 2308 p1 = repo.lookup(p1)
2309 2309 p2 = repo.lookup(p2 or hex(nullid))
2310 2310
2311 2311 if p1 != wp[0].node():
2312 2312 hg.clean(repo, p1)
2313 2313 repo.dirstate.setparents(p1, p2)
2314 2314 elif p2:
2315 2315 try:
2316 2316 p1 = repo.lookup(p1)
2317 2317 p2 = repo.lookup(p2)
2318 2318 if p1 == wp[0].node():
2319 2319 repo.dirstate.setparents(p1, p2)
2320 2320 except error.RepoError:
2321 2321 pass
2322 2322 if opts.get('exact') or opts.get('import_branch'):
2323 2323 repo.dirstate.setbranch(branch or 'default')
2324 2324
2325 2325 files = {}
2326 2326 try:
2327 2327 patch.patch(tmpname, ui, strip=strip, cwd=repo.root,
2328 2328 files=files, eolmode=None)
2329 2329 finally:
2330 2330 files = cmdutil.updatedir(ui, repo, files,
2331 2331 similarity=sim / 100.0)
2332 2332 if not opts.get('no_commit'):
2333 2333 if opts.get('exact'):
2334 2334 m = None
2335 2335 else:
2336 2336 m = cmdutil.matchfiles(repo, files or [])
2337 2337 n = repo.commit(message, opts.get('user') or user,
2338 2338 opts.get('date') or date, match=m,
2339 2339 editor=cmdutil.commiteditor)
2340 2340 if opts.get('exact'):
2341 2341 if hex(n) != nodeid:
2342 2342 repo.rollback()
2343 2343 raise util.Abort(_('patch is damaged'
2344 2344 ' or loses information'))
2345 2345 # Force a dirstate write so that the next transaction
2346 2346 # backups an up-do-date file.
2347 2347 repo.dirstate.write()
2348 2348 if n:
2349 2349 commitid = short(n)
2350 2350
2351 2351 return commitid
2352 2352 finally:
2353 2353 os.unlink(tmpname)
2354 2354
2355 2355 try:
2356 2356 wlock = repo.wlock()
2357 2357 lock = repo.lock()
2358 2358 lastcommit = None
2359 2359 for p in patches:
2360 2360 pf = os.path.join(d, p)
2361 2361
2362 2362 if pf == '-':
2363 2363 ui.status(_("applying patch from stdin\n"))
2364 2364 pf = sys.stdin
2365 2365 else:
2366 2366 ui.status(_("applying %s\n") % p)
2367 2367 pf = url.open(ui, pf)
2368 2368
2369 2369 haspatch = False
2370 2370 for hunk in patch.split(pf):
2371 2371 commitid = tryone(ui, hunk)
2372 2372 if commitid:
2373 2373 haspatch = True
2374 2374 if lastcommit:
2375 2375 ui.status(_('applied %s\n') % lastcommit)
2376 2376 lastcommit = commitid
2377 2377
2378 2378 if not haspatch:
2379 2379 raise util.Abort(_('no diffs found'))
2380 2380
2381 2381 finally:
2382 2382 release(lock, wlock)
2383 2383
2384 2384 def incoming(ui, repo, source="default", **opts):
2385 2385 """show new changesets found in source
2386 2386
2387 2387 Show new changesets found in the specified path/URL or the default
2388 2388 pull location. These are the changesets that would have been pulled
2389 2389 if a pull at the time you issued this command.
2390 2390
2391 2391 For remote repository, using --bundle avoids downloading the
2392 2392 changesets twice if the incoming is followed by a pull.
2393 2393
2394 2394 See pull for valid source format details.
2395 2395
2396 2396 Returns 0 if there are incoming changes, 1 otherwise.
2397 2397 """
2398 2398 if opts.get('bundle') and opts.get('subrepos'):
2399 2399 raise util.Abort(_('cannot combine --bundle and --subrepos'))
2400 2400
2401 2401 ret = hg.incoming(ui, repo, source, opts)
2402 2402 return ret
2403 2403
2404 2404 def init(ui, dest=".", **opts):
2405 2405 """create a new repository in the given directory
2406 2406
2407 2407 Initialize a new repository in the given directory. If the given
2408 2408 directory does not exist, it will be created.
2409 2409
2410 2410 If no directory is given, the current directory is used.
2411 2411
2412 2412 It is possible to specify an ``ssh://`` URL as the destination.
2413 2413 See :hg:`help urls` for more information.
2414 2414
2415 2415 Returns 0 on success.
2416 2416 """
2417 2417 hg.repository(hg.remoteui(ui, opts), ui.expandpath(dest), create=1)
2418 2418
2419 2419 def locate(ui, repo, *pats, **opts):
2420 2420 """locate files matching specific patterns
2421 2421
2422 2422 Print files under Mercurial control in the working directory whose
2423 2423 names match the given patterns.
2424 2424
2425 2425 By default, this command searches all directories in the working
2426 2426 directory. To search just the current directory and its
2427 2427 subdirectories, use "--include .".
2428 2428
2429 2429 If no patterns are given to match, this command prints the names
2430 2430 of all files under Mercurial control in the working directory.
2431 2431
2432 2432 If you want to feed the output of this command into the "xargs"
2433 2433 command, use the -0 option to both this command and "xargs". This
2434 2434 will avoid the problem of "xargs" treating single filenames that
2435 2435 contain whitespace as multiple filenames.
2436 2436
2437 2437 Returns 0 if a match is found, 1 otherwise.
2438 2438 """
2439 2439 end = opts.get('print0') and '\0' or '\n'
2440 2440 rev = opts.get('rev') or None
2441 2441
2442 2442 ret = 1
2443 2443 m = cmdutil.match(repo, pats, opts, default='relglob')
2444 2444 m.bad = lambda x, y: False
2445 2445 for abs in repo[rev].walk(m):
2446 2446 if not rev and abs not in repo.dirstate:
2447 2447 continue
2448 2448 if opts.get('fullpath'):
2449 2449 ui.write(repo.wjoin(abs), end)
2450 2450 else:
2451 2451 ui.write(((pats and m.rel(abs)) or abs), end)
2452 2452 ret = 0
2453 2453
2454 2454 return ret
2455 2455
2456 2456 def log(ui, repo, *pats, **opts):
2457 2457 """show revision history of entire repository or files
2458 2458
2459 2459 Print the revision history of the specified files or the entire
2460 2460 project.
2461 2461
2462 2462 File history is shown without following rename or copy history of
2463 2463 files. Use -f/--follow with a filename to follow history across
2464 2464 renames and copies. --follow without a filename will only show
2465 2465 ancestors or descendants of the starting revision. --follow-first
2466 2466 only follows the first parent of merge revisions.
2467 2467
2468 2468 If no revision range is specified, the default is ``tip:0`` unless
2469 2469 --follow is set, in which case the working directory parent is
2470 2470 used as the starting revision. You can specify a revision set for
2471 2471 log, see :hg:`help revsets` for more information.
2472 2472
2473 2473 See :hg:`help dates` for a list of formats valid for -d/--date.
2474 2474
2475 2475 By default this command prints revision number and changeset id,
2476 2476 tags, non-trivial parents, user, date and time, and a summary for
2477 2477 each commit. When the -v/--verbose switch is used, the list of
2478 2478 changed files and full commit message are shown.
2479 2479
2480 2480 .. note::
2481 2481 log -p/--patch may generate unexpected diff output for merge
2482 2482 changesets, as it will only compare the merge changeset against
2483 2483 its first parent. Also, only files different from BOTH parents
2484 2484 will appear in files:.
2485 2485
2486 2486 Returns 0 on success.
2487 2487 """
2488 2488
2489 2489 matchfn = cmdutil.match(repo, pats, opts)
2490 2490 limit = cmdutil.loglimit(opts)
2491 2491 count = 0
2492 2492
2493 2493 endrev = None
2494 2494 if opts.get('copies') and opts.get('rev'):
2495 2495 endrev = max(cmdutil.revrange(repo, opts.get('rev'))) + 1
2496 2496
2497 2497 df = False
2498 2498 if opts["date"]:
2499 2499 df = util.matchdate(opts["date"])
2500 2500
2501 2501 branches = opts.get('branch', []) + opts.get('only_branch', [])
2502 2502 opts['branch'] = [repo.lookupbranch(b) for b in branches]
2503 2503
2504 2504 displayer = cmdutil.show_changeset(ui, repo, opts, True)
2505 2505 def prep(ctx, fns):
2506 2506 rev = ctx.rev()
2507 2507 parents = [p for p in repo.changelog.parentrevs(rev)
2508 2508 if p != nullrev]
2509 2509 if opts.get('no_merges') and len(parents) == 2:
2510 2510 return
2511 2511 if opts.get('only_merges') and len(parents) != 2:
2512 2512 return
2513 2513 if opts.get('branch') and ctx.branch() not in opts['branch']:
2514 2514 return
2515 2515 if df and not df(ctx.date()[0]):
2516 2516 return
2517 2517 if opts['user'] and not [k for k in opts['user']
2518 2518 if k.lower() in ctx.user().lower()]:
2519 2519 return
2520 2520 if opts.get('keyword'):
2521 2521 for k in [kw.lower() for kw in opts['keyword']]:
2522 2522 if (k in ctx.user().lower() or
2523 2523 k in ctx.description().lower() or
2524 2524 k in " ".join(ctx.files()).lower()):
2525 2525 break
2526 2526 else:
2527 2527 return
2528 2528
2529 2529 copies = None
2530 2530 if opts.get('copies') and rev:
2531 2531 copies = []
2532 2532 getrenamed = templatekw.getrenamedfn(repo, endrev=endrev)
2533 2533 for fn in ctx.files():
2534 2534 rename = getrenamed(fn, rev)
2535 2535 if rename:
2536 2536 copies.append((fn, rename[0]))
2537 2537
2538 2538 revmatchfn = None
2539 2539 if opts.get('patch') or opts.get('stat'):
2540 2540 if opts.get('follow') or opts.get('follow_first'):
2541 2541 # note: this might be wrong when following through merges
2542 2542 revmatchfn = cmdutil.match(repo, fns, default='path')
2543 2543 else:
2544 2544 revmatchfn = matchfn
2545 2545
2546 2546 displayer.show(ctx, copies=copies, matchfn=revmatchfn)
2547 2547
2548 2548 for ctx in cmdutil.walkchangerevs(repo, matchfn, opts, prep):
2549 2549 if count == limit:
2550 2550 break
2551 2551 if displayer.flush(ctx.rev()):
2552 2552 count += 1
2553 2553 displayer.close()
2554 2554
2555 2555 def manifest(ui, repo, node=None, rev=None):
2556 2556 """output the current or given revision of the project manifest
2557 2557
2558 2558 Print a list of version controlled files for the given revision.
2559 2559 If no revision is given, the first parent of the working directory
2560 2560 is used, or the null revision if no revision is checked out.
2561 2561
2562 2562 With -v, print file permissions, symlink and executable bits.
2563 2563 With --debug, print file revision hashes.
2564 2564
2565 2565 Returns 0 on success.
2566 2566 """
2567 2567
2568 2568 if rev and node:
2569 2569 raise util.Abort(_("please specify just one revision"))
2570 2570
2571 2571 if not node:
2572 2572 node = rev
2573 2573
2574 2574 decor = {'l':'644 @ ', 'x':'755 * ', '':'644 '}
2575 2575 ctx = repo[node]
2576 2576 for f in ctx:
2577 2577 if ui.debugflag:
2578 2578 ui.write("%40s " % hex(ctx.manifest()[f]))
2579 2579 if ui.verbose:
2580 2580 ui.write(decor[ctx.flags(f)])
2581 2581 ui.write("%s\n" % f)
2582 2582
2583 2583 def merge(ui, repo, node=None, **opts):
2584 2584 """merge working directory with another revision
2585 2585
2586 2586 The current working directory is updated with all changes made in
2587 2587 the requested revision since the last common predecessor revision.
2588 2588
2589 2589 Files that changed between either parent are marked as changed for
2590 2590 the next commit and a commit must be performed before any further
2591 2591 updates to the repository are allowed. The next commit will have
2592 2592 two parents.
2593 2593
2594 2594 ``--tool`` can be used to specify the merge tool used for file
2595 2595 merges. It overrides the HGMERGE environment variable and your
2596 2596 configuration files.
2597 2597
2598 2598 If no revision is specified, the working directory's parent is a
2599 2599 head revision, and the current branch contains exactly one other
2600 2600 head, the other head is merged with by default. Otherwise, an
2601 2601 explicit revision with which to merge with must be provided.
2602 2602
2603 2603 :hg:`resolve` must be used to resolve unresolved files.
2604 2604
2605 2605 To undo an uncommitted merge, use :hg:`update --clean .` which
2606 2606 will check out a clean copy of the original merge parent, losing
2607 2607 all changes.
2608 2608
2609 2609 Returns 0 on success, 1 if there are unresolved files.
2610 2610 """
2611 2611
2612 2612 if opts.get('rev') and node:
2613 2613 raise util.Abort(_("please specify just one revision"))
2614 2614 if not node:
2615 2615 node = opts.get('rev')
2616 2616
2617 2617 if not node:
2618 2618 branch = repo.changectx(None).branch()
2619 2619 bheads = repo.branchheads(branch)
2620 2620 if len(bheads) > 2:
2621 2621 raise util.Abort(_(
2622 2622 'branch \'%s\' has %d heads - '
2623 2623 'please merge with an explicit rev\n'
2624 2624 '(run \'hg heads .\' to see heads)')
2625 2625 % (branch, len(bheads)))
2626 2626
2627 2627 parent = repo.dirstate.parents()[0]
2628 2628 if len(bheads) == 1:
2629 2629 if len(repo.heads()) > 1:
2630 2630 raise util.Abort(_(
2631 2631 'branch \'%s\' has one head - '
2632 2632 'please merge with an explicit rev\n'
2633 2633 '(run \'hg heads\' to see all heads)')
2634 2634 % branch)
2635 2635 msg = _('there is nothing to merge')
2636 2636 if parent != repo.lookup(repo[None].branch()):
2637 2637 msg = _('%s - use "hg update" instead') % msg
2638 2638 raise util.Abort(msg)
2639 2639
2640 2640 if parent not in bheads:
2641 2641 raise util.Abort(_('working dir not at a head rev - '
2642 2642 'use "hg update" or merge with an explicit rev'))
2643 2643 node = parent == bheads[0] and bheads[-1] or bheads[0]
2644 2644
2645 2645 if opts.get('preview'):
2646 2646 # find nodes that are ancestors of p2 but not of p1
2647 2647 p1 = repo.lookup('.')
2648 2648 p2 = repo.lookup(node)
2649 2649 nodes = repo.changelog.findmissing(common=[p1], heads=[p2])
2650 2650
2651 2651 displayer = cmdutil.show_changeset(ui, repo, opts)
2652 2652 for node in nodes:
2653 2653 displayer.show(repo[node])
2654 2654 displayer.close()
2655 2655 return 0
2656 2656
2657 2657 try:
2658 2658 # ui.forcemerge is an internal variable, do not document
2659 2659 ui.setconfig('ui', 'forcemerge', opts.get('tool', ''))
2660 2660 return hg.merge(repo, node, force=opts.get('force'))
2661 2661 finally:
2662 2662 ui.setconfig('ui', 'forcemerge', '')
2663 2663
2664 2664 def outgoing(ui, repo, dest=None, **opts):
2665 2665 """show changesets not found in the destination
2666 2666
2667 2667 Show changesets not found in the specified destination repository
2668 2668 or the default push location. These are the changesets that would
2669 2669 be pushed if a push was requested.
2670 2670
2671 2671 See pull for details of valid destination formats.
2672 2672
2673 2673 Returns 0 if there are outgoing changes, 1 otherwise.
2674 2674 """
2675 2675 ret = hg.outgoing(ui, repo, dest, opts)
2676 2676 return ret
2677 2677
2678 2678 def parents(ui, repo, file_=None, **opts):
2679 2679 """show the parents of the working directory or revision
2680 2680
2681 2681 Print the working directory's parent revisions. If a revision is
2682 2682 given via -r/--rev, the parent of that revision will be printed.
2683 2683 If a file argument is given, the revision in which the file was
2684 2684 last changed (before the working directory revision or the
2685 2685 argument to --rev if given) is printed.
2686 2686
2687 2687 Returns 0 on success.
2688 2688 """
2689 2689 rev = opts.get('rev')
2690 2690 if rev:
2691 2691 ctx = repo[rev]
2692 2692 else:
2693 2693 ctx = repo[None]
2694 2694
2695 2695 if file_:
2696 2696 m = cmdutil.match(repo, (file_,), opts)
2697 2697 if m.anypats() or len(m.files()) != 1:
2698 2698 raise util.Abort(_('can only specify an explicit filename'))
2699 2699 file_ = m.files()[0]
2700 2700 filenodes = []
2701 2701 for cp in ctx.parents():
2702 2702 if not cp:
2703 2703 continue
2704 2704 try:
2705 2705 filenodes.append(cp.filenode(file_))
2706 2706 except error.LookupError:
2707 2707 pass
2708 2708 if not filenodes:
2709 2709 raise util.Abort(_("'%s' not found in manifest!") % file_)
2710 2710 fl = repo.file(file_)
2711 2711 p = [repo.lookup(fl.linkrev(fl.rev(fn))) for fn in filenodes]
2712 2712 else:
2713 2713 p = [cp.node() for cp in ctx.parents()]
2714 2714
2715 2715 displayer = cmdutil.show_changeset(ui, repo, opts)
2716 2716 for n in p:
2717 2717 if n != nullid:
2718 2718 displayer.show(repo[n])
2719 2719 displayer.close()
2720 2720
2721 2721 def paths(ui, repo, search=None):
2722 2722 """show aliases for remote repositories
2723 2723
2724 2724 Show definition of symbolic path name NAME. If no name is given,
2725 2725 show definition of all available names.
2726 2726
2727 2727 Path names are defined in the [paths] section of your
2728 2728 configuration file and in ``/etc/mercurial/hgrc``. If run inside a
2729 2729 repository, ``.hg/hgrc`` is used, too.
2730 2730
2731 2731 The path names ``default`` and ``default-push`` have a special
2732 2732 meaning. When performing a push or pull operation, they are used
2733 2733 as fallbacks if no location is specified on the command-line.
2734 2734 When ``default-push`` is set, it will be used for push and
2735 2735 ``default`` will be used for pull; otherwise ``default`` is used
2736 2736 as the fallback for both. When cloning a repository, the clone
2737 2737 source is written as ``default`` in ``.hg/hgrc``. Note that
2738 2738 ``default`` and ``default-push`` apply to all inbound (e.g.
2739 2739 :hg:`incoming`) and outbound (e.g. :hg:`outgoing`, :hg:`email` and
2740 2740 :hg:`bundle`) operations.
2741 2741
2742 2742 See :hg:`help urls` for more information.
2743 2743
2744 2744 Returns 0 on success.
2745 2745 """
2746 2746 if search:
2747 2747 for name, path in ui.configitems("paths"):
2748 2748 if name == search:
2749 2749 ui.write("%s\n" % url.hidepassword(path))
2750 2750 return
2751 2751 ui.warn(_("not found!\n"))
2752 2752 return 1
2753 2753 else:
2754 2754 for name, path in ui.configitems("paths"):
2755 2755 ui.write("%s = %s\n" % (name, url.hidepassword(path)))
2756 2756
2757 2757 def postincoming(ui, repo, modheads, optupdate, checkout):
2758 2758 if modheads == 0:
2759 2759 return
2760 2760 if optupdate:
2761 2761 if (modheads <= 1 or len(repo.branchheads()) == 1) or checkout:
2762 2762 return hg.update(repo, checkout)
2763 2763 else:
2764 2764 ui.status(_("not updating, since new heads added\n"))
2765 2765 if modheads > 1:
2766 2766 ui.status(_("(run 'hg heads' to see heads, 'hg merge' to merge)\n"))
2767 2767 else:
2768 2768 ui.status(_("(run 'hg update' to get a working copy)\n"))
2769 2769
2770 2770 def pull(ui, repo, source="default", **opts):
2771 2771 """pull changes from the specified source
2772 2772
2773 2773 Pull changes from a remote repository to a local one.
2774 2774
2775 2775 This finds all changes from the repository at the specified path
2776 2776 or URL and adds them to a local repository (the current one unless
2777 2777 -R is specified). By default, this does not update the copy of the
2778 2778 project in the working directory.
2779 2779
2780 2780 Use :hg:`incoming` if you want to see what would have been added
2781 2781 by a pull at the time you issued this command. If you then decide
2782 2782 to add those changes to the repository, you should use :hg:`pull
2783 2783 -r X` where ``X`` is the last changeset listed by :hg:`incoming`.
2784 2784
2785 2785 If SOURCE is omitted, the 'default' path will be used.
2786 2786 See :hg:`help urls` for more information.
2787 2787
2788 2788 Returns 0 on success, 1 if an update had unresolved files.
2789 2789 """
2790 2790 source, branches = hg.parseurl(ui.expandpath(source), opts.get('branch'))
2791 2791 other = hg.repository(hg.remoteui(repo, opts), source)
2792 2792 ui.status(_('pulling from %s\n') % url.hidepassword(source))
2793 2793 revs, checkout = hg.addbranchrevs(repo, other, branches, opts.get('rev'))
2794 2794 if revs:
2795 2795 try:
2796 2796 revs = [other.lookup(rev) for rev in revs]
2797 2797 except error.CapabilityError:
2798 2798 err = _("other repository doesn't support revision lookup, "
2799 2799 "so a rev cannot be specified.")
2800 2800 raise util.Abort(err)
2801 2801
2802 2802 modheads = repo.pull(other, heads=revs, force=opts.get('force'))
2803 2803 if checkout:
2804 2804 checkout = str(repo.changelog.rev(other.lookup(checkout)))
2805 2805 repo._subtoppath = source
2806 2806 try:
2807 2807 return postincoming(ui, repo, modheads, opts.get('update'), checkout)
2808 2808 finally:
2809 2809 del repo._subtoppath
2810 2810
2811 2811 def push(ui, repo, dest=None, **opts):
2812 2812 """push changes to the specified destination
2813 2813
2814 2814 Push changesets from the local repository to the specified
2815 2815 destination.
2816 2816
2817 2817 This operation is symmetrical to pull: it is identical to a pull
2818 2818 in the destination repository from the current one.
2819 2819
2820 2820 By default, push will not allow creation of new heads at the
2821 2821 destination, since multiple heads would make it unclear which head
2822 2822 to use. In this situation, it is recommended to pull and merge
2823 2823 before pushing.
2824 2824
2825 2825 Use --new-branch if you want to allow push to create a new named
2826 2826 branch that is not present at the destination. This allows you to
2827 2827 only create a new branch without forcing other changes.
2828 2828
2829 2829 Use -f/--force to override the default behavior and push all
2830 2830 changesets on all branches.
2831 2831
2832 2832 If -r/--rev is used, the specified revision and all its ancestors
2833 2833 will be pushed to the remote repository.
2834 2834
2835 2835 Please see :hg:`help urls` for important details about ``ssh://``
2836 2836 URLs. If DESTINATION is omitted, a default path will be used.
2837 2837
2838 2838 Returns 0 if push was successful, 1 if nothing to push.
2839 2839 """
2840 2840 dest = ui.expandpath(dest or 'default-push', dest or 'default')
2841 2841 dest, branches = hg.parseurl(dest, opts.get('branch'))
2842 2842 revs, checkout = hg.addbranchrevs(repo, repo, branches, opts.get('rev'))
2843 2843 other = hg.repository(hg.remoteui(repo, opts), dest)
2844 2844 ui.status(_('pushing to %s\n') % url.hidepassword(dest))
2845 2845 if revs:
2846 2846 revs = [repo.lookup(rev) for rev in revs]
2847 2847
2848 2848 repo._subtoppath = dest
2849 2849 try:
2850 2850 # push subrepos depth-first for coherent ordering
2851 2851 c = repo['']
2852 2852 subs = c.substate # only repos that are committed
2853 2853 for s in sorted(subs):
2854 2854 if not c.sub(s).push(opts.get('force')):
2855 2855 return False
2856 2856 finally:
2857 2857 del repo._subtoppath
2858 2858 r = repo.push(other, opts.get('force'), revs=revs,
2859 2859 newbranch=opts.get('new_branch'))
2860 2860 return r == 0
2861 2861
2862 2862 def recover(ui, repo):
2863 2863 """roll back an interrupted transaction
2864 2864
2865 2865 Recover from an interrupted commit or pull.
2866 2866
2867 2867 This command tries to fix the repository status after an
2868 2868 interrupted operation. It should only be necessary when Mercurial
2869 2869 suggests it.
2870 2870
2871 2871 Returns 0 if successful, 1 if nothing to recover or verify fails.
2872 2872 """
2873 2873 if repo.recover():
2874 2874 return hg.verify(repo)
2875 2875 return 1
2876 2876
2877 2877 def remove(ui, repo, *pats, **opts):
2878 2878 """remove the specified files on the next commit
2879 2879
2880 2880 Schedule the indicated files for removal from the repository.
2881 2881
2882 2882 This only removes files from the current branch, not from the
2883 2883 entire project history. -A/--after can be used to remove only
2884 2884 files that have already been deleted, -f/--force can be used to
2885 2885 force deletion, and -Af can be used to remove files from the next
2886 2886 revision without deleting them from the working directory.
2887 2887
2888 2888 The following table details the behavior of remove for different
2889 2889 file states (columns) and option combinations (rows). The file
2890 2890 states are Added [A], Clean [C], Modified [M] and Missing [!] (as
2891 2891 reported by :hg:`status`). The actions are Warn, Remove (from
2892 2892 branch) and Delete (from disk)::
2893 2893
2894 2894 A C M !
2895 2895 none W RD W R
2896 2896 -f R RD RD R
2897 2897 -A W W W R
2898 2898 -Af R R R R
2899 2899
2900 2900 This command schedules the files to be removed at the next commit.
2901 2901 To undo a remove before that, see :hg:`revert`.
2902 2902
2903 2903 Returns 0 on success, 1 if any warnings encountered.
2904 2904 """
2905 2905
2906 2906 ret = 0
2907 2907 after, force = opts.get('after'), opts.get('force')
2908 2908 if not pats and not after:
2909 2909 raise util.Abort(_('no files specified'))
2910 2910
2911 2911 m = cmdutil.match(repo, pats, opts)
2912 2912 s = repo.status(match=m, clean=True)
2913 2913 modified, added, deleted, clean = s[0], s[1], s[3], s[6]
2914 2914
2915 2915 for f in m.files():
2916 2916 if f not in repo.dirstate and not os.path.isdir(m.rel(f)):
2917 2917 ui.warn(_('not removing %s: file is untracked\n') % m.rel(f))
2918 2918 ret = 1
2919 2919
2920 2920 if force:
2921 2921 remove, forget = modified + deleted + clean, added
2922 2922 elif after:
2923 2923 remove, forget = deleted, []
2924 2924 for f in modified + added + clean:
2925 2925 ui.warn(_('not removing %s: file still exists (use -f'
2926 2926 ' to force removal)\n') % m.rel(f))
2927 2927 ret = 1
2928 2928 else:
2929 2929 remove, forget = deleted + clean, []
2930 2930 for f in modified:
2931 2931 ui.warn(_('not removing %s: file is modified (use -f'
2932 2932 ' to force removal)\n') % m.rel(f))
2933 2933 ret = 1
2934 2934 for f in added:
2935 2935 ui.warn(_('not removing %s: file has been marked for add (use -f'
2936 2936 ' to force removal)\n') % m.rel(f))
2937 2937 ret = 1
2938 2938
2939 2939 for f in sorted(remove + forget):
2940 2940 if ui.verbose or not m.exact(f):
2941 2941 ui.status(_('removing %s\n') % m.rel(f))
2942 2942
2943 2943 repo[None].forget(forget)
2944 2944 repo[None].remove(remove, unlink=not after)
2945 2945 return ret
2946 2946
2947 2947 def rename(ui, repo, *pats, **opts):
2948 2948 """rename files; equivalent of copy + remove
2949 2949
2950 2950 Mark dest as copies of sources; mark sources for deletion. If dest
2951 2951 is a directory, copies are put in that directory. If dest is a
2952 2952 file, there can only be one source.
2953 2953
2954 2954 By default, this command copies the contents of files as they
2955 2955 exist in the working directory. If invoked with -A/--after, the
2956 2956 operation is recorded, but no copying is performed.
2957 2957
2958 2958 This command takes effect at the next commit. To undo a rename
2959 2959 before that, see :hg:`revert`.
2960 2960
2961 2961 Returns 0 on success, 1 if errors are encountered.
2962 2962 """
2963 2963 wlock = repo.wlock(False)
2964 2964 try:
2965 2965 return cmdutil.copy(ui, repo, pats, opts, rename=True)
2966 2966 finally:
2967 2967 wlock.release()
2968 2968
2969 2969 def resolve(ui, repo, *pats, **opts):
2970 2970 """redo merges or set/view the merge status of files
2971 2971
2972 2972 Merges with unresolved conflicts are often the result of
2973 2973 non-interactive merging using the ``internal:merge`` configuration
2974 2974 setting, or a command-line merge tool like ``diff3``. The resolve
2975 2975 command is used to manage the files involved in a merge, after
2976 2976 :hg:`merge` has been run, and before :hg:`commit` is run (i.e. the
2977 2977 working directory must have two parents).
2978 2978
2979 2979 The resolve command can be used in the following ways:
2980 2980
2981 2981 - :hg:`resolve [--tool TOOL] FILE...`: attempt to re-merge the specified
2982 2982 files, discarding any previous merge attempts. Re-merging is not
2983 2983 performed for files already marked as resolved. Use ``--all/-a``
2984 2984 to selects all unresolved files. ``--tool`` can be used to specify
2985 2985 the merge tool used for the given files. It overrides the HGMERGE
2986 2986 environment variable and your configuration files.
2987 2987
2988 2988 - :hg:`resolve -m [FILE]`: mark a file as having been resolved
2989 2989 (e.g. after having manually fixed-up the files). The default is
2990 2990 to mark all unresolved files.
2991 2991
2992 2992 - :hg:`resolve -u [FILE]...`: mark a file as unresolved. The
2993 2993 default is to mark all resolved files.
2994 2994
2995 2995 - :hg:`resolve -l`: list files which had or still have conflicts.
2996 2996 In the printed list, ``U`` = unresolved and ``R`` = resolved.
2997 2997
2998 2998 Note that Mercurial will not let you commit files with unresolved
2999 2999 merge conflicts. You must use :hg:`resolve -m ...` before you can
3000 3000 commit after a conflicting merge.
3001 3001
3002 3002 Returns 0 on success, 1 if any files fail a resolve attempt.
3003 3003 """
3004 3004
3005 3005 all, mark, unmark, show, nostatus = \
3006 3006 [opts.get(o) for o in 'all mark unmark list no_status'.split()]
3007 3007
3008 3008 if (show and (mark or unmark)) or (mark and unmark):
3009 3009 raise util.Abort(_("too many options specified"))
3010 3010 if pats and all:
3011 3011 raise util.Abort(_("can't specify --all and patterns"))
3012 3012 if not (all or pats or show or mark or unmark):
3013 3013 raise util.Abort(_('no files or directories specified; '
3014 3014 'use --all to remerge all files'))
3015 3015
3016 3016 ms = mergemod.mergestate(repo)
3017 3017 m = cmdutil.match(repo, pats, opts)
3018 3018 ret = 0
3019 3019
3020 3020 for f in ms:
3021 3021 if m(f):
3022 3022 if show:
3023 3023 if nostatus:
3024 3024 ui.write("%s\n" % f)
3025 3025 else:
3026 3026 ui.write("%s %s\n" % (ms[f].upper(), f),
3027 3027 label='resolve.' +
3028 3028 {'u': 'unresolved', 'r': 'resolved'}[ms[f]])
3029 3029 elif mark:
3030 3030 ms.mark(f, "r")
3031 3031 elif unmark:
3032 3032 ms.mark(f, "u")
3033 3033 else:
3034 3034 wctx = repo[None]
3035 3035 mctx = wctx.parents()[-1]
3036 3036
3037 3037 # backup pre-resolve (merge uses .orig for its own purposes)
3038 3038 a = repo.wjoin(f)
3039 3039 util.copyfile(a, a + ".resolve")
3040 3040
3041 3041 try:
3042 3042 # resolve file
3043 3043 ui.setconfig('ui', 'forcemerge', opts.get('tool', ''))
3044 3044 if ms.resolve(f, wctx, mctx):
3045 3045 ret = 1
3046 3046 finally:
3047 3047 ui.setconfig('ui', 'forcemerge', '')
3048 3048
3049 3049 # replace filemerge's .orig file with our resolve file
3050 3050 util.rename(a + ".resolve", a + ".orig")
3051 3051
3052 3052 ms.commit()
3053 3053 return ret
3054 3054
3055 3055 def revert(ui, repo, *pats, **opts):
3056 3056 """restore individual files or directories to an earlier state
3057 3057
3058 3058 .. note::
3059 3059 This command is most likely not what you are looking for.
3060 3060 Revert will partially overwrite content in the working
3061 3061 directory without changing the working directory parents. Use
3062 3062 :hg:`update -r rev` to check out earlier revisions, or
3063 3063 :hg:`update --clean .` to undo a merge which has added another
3064 3064 parent.
3065 3065
3066 3066 With no revision specified, revert the named files or directories
3067 3067 to the contents they had in the parent of the working directory.
3068 3068 This restores the contents of the affected files to an unmodified
3069 3069 state and unschedules adds, removes, copies, and renames. If the
3070 3070 working directory has two parents, you must explicitly specify a
3071 3071 revision.
3072 3072
3073 3073 Using the -r/--rev option, revert the given files or directories
3074 3074 to their contents as of a specific revision. This can be helpful
3075 3075 to "roll back" some or all of an earlier change. See :hg:`help
3076 3076 dates` for a list of formats valid for -d/--date.
3077 3077
3078 3078 Revert modifies the working directory. It does not commit any
3079 3079 changes, or change the parent of the working directory. If you
3080 3080 revert to a revision other than the parent of the working
3081 3081 directory, the reverted files will thus appear modified
3082 3082 afterwards.
3083 3083
3084 3084 If a file has been deleted, it is restored. If the executable mode
3085 3085 of a file was changed, it is reset.
3086 3086
3087 3087 If names are given, all files matching the names are reverted.
3088 3088 If no arguments are given, no files are reverted.
3089 3089
3090 3090 Modified files are saved with a .orig suffix before reverting.
3091 3091 To disable these backups, use --no-backup.
3092 3092
3093 3093 Returns 0 on success.
3094 3094 """
3095 3095
3096 3096 if opts.get("date"):
3097 3097 if opts.get("rev"):
3098 3098 raise util.Abort(_("you can't specify a revision and a date"))
3099 3099 opts["rev"] = cmdutil.finddate(ui, repo, opts["date"])
3100 3100
3101 3101 if not pats and not opts.get('all'):
3102 3102 raise util.Abort(_('no files or directories specified; '
3103 3103 'use --all to revert the whole repo'))
3104 3104
3105 3105 parent, p2 = repo.dirstate.parents()
3106 3106 if not opts.get('rev') and p2 != nullid:
3107 3107 raise util.Abort(_('uncommitted merge - please provide a '
3108 3108 'specific revision'))
3109 3109 ctx = repo[opts.get('rev')]
3110 3110 node = ctx.node()
3111 3111 mf = ctx.manifest()
3112 3112 if node == parent:
3113 3113 pmf = mf
3114 3114 else:
3115 3115 pmf = None
3116 3116
3117 3117 # need all matching names in dirstate and manifest of target rev,
3118 3118 # so have to walk both. do not print errors if files exist in one
3119 3119 # but not other.
3120 3120
3121 3121 names = {}
3122 3122
3123 3123 wlock = repo.wlock()
3124 3124 try:
3125 3125 # walk dirstate.
3126 3126
3127 3127 m = cmdutil.match(repo, pats, opts)
3128 3128 m.bad = lambda x, y: False
3129 3129 for abs in repo.walk(m):
3130 3130 names[abs] = m.rel(abs), m.exact(abs)
3131 3131
3132 3132 # walk target manifest.
3133 3133
3134 3134 def badfn(path, msg):
3135 3135 if path in names:
3136 3136 return
3137 3137 path_ = path + '/'
3138 3138 for f in names:
3139 3139 if f.startswith(path_):
3140 3140 return
3141 3141 ui.warn("%s: %s\n" % (m.rel(path), msg))
3142 3142
3143 3143 m = cmdutil.match(repo, pats, opts)
3144 3144 m.bad = badfn
3145 3145 for abs in repo[node].walk(m):
3146 3146 if abs not in names:
3147 3147 names[abs] = m.rel(abs), m.exact(abs)
3148 3148
3149 3149 m = cmdutil.matchfiles(repo, names)
3150 3150 changes = repo.status(match=m)[:4]
3151 3151 modified, added, removed, deleted = map(set, changes)
3152 3152
3153 3153 # if f is a rename, also revert the source
3154 3154 cwd = repo.getcwd()
3155 3155 for f in added:
3156 3156 src = repo.dirstate.copied(f)
3157 3157 if src and src not in names and repo.dirstate[src] == 'r':
3158 3158 removed.add(src)
3159 3159 names[src] = (repo.pathto(src, cwd), True)
3160 3160
3161 3161 def removeforget(abs):
3162 3162 if repo.dirstate[abs] == 'a':
3163 3163 return _('forgetting %s\n')
3164 3164 return _('removing %s\n')
3165 3165
3166 3166 revert = ([], _('reverting %s\n'))
3167 3167 add = ([], _('adding %s\n'))
3168 3168 remove = ([], removeforget)
3169 3169 undelete = ([], _('undeleting %s\n'))
3170 3170
3171 3171 disptable = (
3172 3172 # dispatch table:
3173 3173 # file state
3174 3174 # action if in target manifest
3175 3175 # action if not in target manifest
3176 3176 # make backup if in target manifest
3177 3177 # make backup if not in target manifest
3178 3178 (modified, revert, remove, True, True),
3179 3179 (added, revert, remove, True, False),
3180 3180 (removed, undelete, None, False, False),
3181 3181 (deleted, revert, remove, False, False),
3182 3182 )
3183 3183
3184 3184 for abs, (rel, exact) in sorted(names.items()):
3185 3185 mfentry = mf.get(abs)
3186 3186 target = repo.wjoin(abs)
3187 3187 def handle(xlist, dobackup):
3188 3188 xlist[0].append(abs)
3189 3189 if (dobackup and not opts.get('no_backup') and
3190 3190 os.path.lexists(target)):
3191 3191 bakname = "%s.orig" % rel
3192 3192 ui.note(_('saving current version of %s as %s\n') %
3193 3193 (rel, bakname))
3194 3194 if not opts.get('dry_run'):
3195 3195 util.rename(target, bakname)
3196 3196 if ui.verbose or not exact:
3197 3197 msg = xlist[1]
3198 3198 if not isinstance(msg, basestring):
3199 3199 msg = msg(abs)
3200 3200 ui.status(msg % rel)
3201 3201 for table, hitlist, misslist, backuphit, backupmiss in disptable:
3202 3202 if abs not in table:
3203 3203 continue
3204 3204 # file has changed in dirstate
3205 3205 if mfentry:
3206 3206 handle(hitlist, backuphit)
3207 3207 elif misslist is not None:
3208 3208 handle(misslist, backupmiss)
3209 3209 break
3210 3210 else:
3211 3211 if abs not in repo.dirstate:
3212 3212 if mfentry:
3213 3213 handle(add, True)
3214 3214 elif exact:
3215 3215 ui.warn(_('file not managed: %s\n') % rel)
3216 3216 continue
3217 3217 # file has not changed in dirstate
3218 3218 if node == parent:
3219 3219 if exact:
3220 3220 ui.warn(_('no changes needed to %s\n') % rel)
3221 3221 continue
3222 3222 if pmf is None:
3223 3223 # only need parent manifest in this unlikely case,
3224 3224 # so do not read by default
3225 3225 pmf = repo[parent].manifest()
3226 3226 if abs in pmf:
3227 3227 if mfentry:
3228 3228 # if version of file is same in parent and target
3229 3229 # manifests, do nothing
3230 3230 if (pmf[abs] != mfentry or
3231 3231 pmf.flags(abs) != mf.flags(abs)):
3232 3232 handle(revert, False)
3233 3233 else:
3234 3234 handle(remove, False)
3235 3235
3236 3236 if not opts.get('dry_run'):
3237 3237 def checkout(f):
3238 3238 fc = ctx[f]
3239 3239 repo.wwrite(f, fc.data(), fc.flags())
3240 3240
3241 3241 audit_path = util.path_auditor(repo.root)
3242 3242 for f in remove[0]:
3243 3243 if repo.dirstate[f] == 'a':
3244 3244 repo.dirstate.forget(f)
3245 3245 continue
3246 3246 audit_path(f)
3247 3247 try:
3248 3248 util.unlink(repo.wjoin(f))
3249 3249 except OSError:
3250 3250 pass
3251 3251 repo.dirstate.remove(f)
3252 3252
3253 3253 normal = None
3254 3254 if node == parent:
3255 3255 # We're reverting to our parent. If possible, we'd like status
3256 3256 # to report the file as clean. We have to use normallookup for
3257 3257 # merges to avoid losing information about merged/dirty files.
3258 3258 if p2 != nullid:
3259 3259 normal = repo.dirstate.normallookup
3260 3260 else:
3261 3261 normal = repo.dirstate.normal
3262 3262 for f in revert[0]:
3263 3263 checkout(f)
3264 3264 if normal:
3265 3265 normal(f)
3266 3266
3267 3267 for f in add[0]:
3268 3268 checkout(f)
3269 3269 repo.dirstate.add(f)
3270 3270
3271 3271 normal = repo.dirstate.normallookup
3272 3272 if node == parent and p2 == nullid:
3273 3273 normal = repo.dirstate.normal
3274 3274 for f in undelete[0]:
3275 3275 checkout(f)
3276 3276 normal(f)
3277 3277
3278 3278 finally:
3279 3279 wlock.release()
3280 3280
3281 3281 def rollback(ui, repo, **opts):
3282 3282 """roll back the last transaction (dangerous)
3283 3283
3284 3284 This command should be used with care. There is only one level of
3285 3285 rollback, and there is no way to undo a rollback. It will also
3286 3286 restore the dirstate at the time of the last transaction, losing
3287 3287 any dirstate changes since that time. This command does not alter
3288 3288 the working directory.
3289 3289
3290 3290 Transactions are used to encapsulate the effects of all commands
3291 3291 that create new changesets or propagate existing changesets into a
3292 3292 repository. For example, the following commands are transactional,
3293 3293 and their effects can be rolled back:
3294 3294
3295 3295 - commit
3296 3296 - import
3297 3297 - pull
3298 3298 - push (with this repository as the destination)
3299 3299 - unbundle
3300 3300
3301 3301 This command is not intended for use on public repositories. Once
3302 3302 changes are visible for pull by other users, rolling a transaction
3303 3303 back locally is ineffective (someone else may already have pulled
3304 3304 the changes). Furthermore, a race is possible with readers of the
3305 3305 repository; for example an in-progress pull from the repository
3306 3306 may fail if a rollback is performed.
3307 3307
3308 3308 Returns 0 on success, 1 if no rollback data is available.
3309 3309 """
3310 3310 return repo.rollback(opts.get('dry_run'))
3311 3311
3312 3312 def root(ui, repo):
3313 3313 """print the root (top) of the current working directory
3314 3314
3315 3315 Print the root directory of the current repository.
3316 3316
3317 3317 Returns 0 on success.
3318 3318 """
3319 3319 ui.write(repo.root + "\n")
3320 3320
3321 3321 def serve(ui, repo, **opts):
3322 3322 """start stand-alone webserver
3323 3323
3324 3324 Start a local HTTP repository browser and pull server. You can use
3325 3325 this for ad-hoc sharing and browsing of repositories. It is
3326 3326 recommended to use a real web server to serve a repository for
3327 3327 longer periods of time.
3328 3328
3329 3329 Please note that the server does not implement access control.
3330 3330 This means that, by default, anybody can read from the server and
3331 3331 nobody can write to it by default. Set the ``web.allow_push``
3332 3332 option to ``*`` to allow everybody to push to the server. You
3333 3333 should use a real web server if you need to authenticate users.
3334 3334
3335 3335 By default, the server logs accesses to stdout and errors to
3336 3336 stderr. Use the -A/--accesslog and -E/--errorlog options to log to
3337 3337 files.
3338 3338
3339 3339 To have the server choose a free port number to listen on, specify
3340 3340 a port number of 0; in this case, the server will print the port
3341 3341 number it uses.
3342 3342
3343 3343 Returns 0 on success.
3344 3344 """
3345 3345
3346 3346 if opts["stdio"]:
3347 3347 if repo is None:
3348 3348 raise error.RepoError(_("There is no Mercurial repository here"
3349 3349 " (.hg not found)"))
3350 3350 s = sshserver.sshserver(ui, repo)
3351 3351 s.serve_forever()
3352 3352
3353 3353 # this way we can check if something was given in the command-line
3354 3354 if opts.get('port'):
3355 3355 opts['port'] = util.getport(opts.get('port'))
3356 3356
3357 3357 baseui = repo and repo.baseui or ui
3358 3358 optlist = ("name templates style address port prefix ipv6"
3359 3359 " accesslog errorlog certificate encoding")
3360 3360 for o in optlist.split():
3361 3361 val = opts.get(o, '')
3362 3362 if val in (None, ''): # should check against default options instead
3363 3363 continue
3364 3364 baseui.setconfig("web", o, val)
3365 3365 if repo and repo.ui != baseui:
3366 3366 repo.ui.setconfig("web", o, val)
3367 3367
3368 3368 o = opts.get('web_conf') or opts.get('webdir_conf')
3369 3369 if not o:
3370 3370 if not repo:
3371 3371 raise error.RepoError(_("There is no Mercurial repository"
3372 3372 " here (.hg not found)"))
3373 3373 o = repo.root
3374 3374
3375 3375 app = hgweb.hgweb(o, baseui=ui)
3376 3376
3377 3377 class service(object):
3378 3378 def init(self):
3379 3379 util.set_signal_handler()
3380 3380 self.httpd = hgweb.server.create_server(ui, app)
3381 3381
3382 3382 if opts['port'] and not ui.verbose:
3383 3383 return
3384 3384
3385 3385 if self.httpd.prefix:
3386 3386 prefix = self.httpd.prefix.strip('/') + '/'
3387 3387 else:
3388 3388 prefix = ''
3389 3389
3390 3390 port = ':%d' % self.httpd.port
3391 3391 if port == ':80':
3392 3392 port = ''
3393 3393
3394 3394 bindaddr = self.httpd.addr
3395 3395 if bindaddr == '0.0.0.0':
3396 3396 bindaddr = '*'
3397 3397 elif ':' in bindaddr: # IPv6
3398 3398 bindaddr = '[%s]' % bindaddr
3399 3399
3400 3400 fqaddr = self.httpd.fqaddr
3401 3401 if ':' in fqaddr:
3402 3402 fqaddr = '[%s]' % fqaddr
3403 3403 if opts['port']:
3404 3404 write = ui.status
3405 3405 else:
3406 3406 write = ui.write
3407 3407 write(_('listening at http://%s%s/%s (bound to %s:%d)\n') %
3408 3408 (fqaddr, port, prefix, bindaddr, self.httpd.port))
3409 3409
3410 3410 def run(self):
3411 3411 self.httpd.serve_forever()
3412 3412
3413 3413 service = service()
3414 3414
3415 3415 cmdutil.service(opts, initfn=service.init, runfn=service.run)
3416 3416
3417 3417 def status(ui, repo, *pats, **opts):
3418 3418 """show changed files in the working directory
3419 3419
3420 3420 Show status of files in the repository. If names are given, only
3421 3421 files that match are shown. Files that are clean or ignored or
3422 3422 the source of a copy/move operation, are not listed unless
3423 3423 -c/--clean, -i/--ignored, -C/--copies or -A/--all are given.
3424 3424 Unless options described with "show only ..." are given, the
3425 3425 options -mardu are used.
3426 3426
3427 3427 Option -q/--quiet hides untracked (unknown and ignored) files
3428 3428 unless explicitly requested with -u/--unknown or -i/--ignored.
3429 3429
3430 3430 .. note::
3431 3431 status may appear to disagree with diff if permissions have
3432 3432 changed or a merge has occurred. The standard diff format does
3433 3433 not report permission changes and diff only reports changes
3434 3434 relative to one merge parent.
3435 3435
3436 3436 If one revision is given, it is used as the base revision.
3437 3437 If two revisions are given, the differences between them are
3438 3438 shown. The --change option can also be used as a shortcut to list
3439 3439 the changed files of a revision from its first parent.
3440 3440
3441 3441 The codes used to show the status of files are::
3442 3442
3443 3443 M = modified
3444 3444 A = added
3445 3445 R = removed
3446 3446 C = clean
3447 3447 ! = missing (deleted by non-hg command, but still tracked)
3448 3448 ? = not tracked
3449 3449 I = ignored
3450 3450 = origin of the previous file listed as A (added)
3451 3451
3452 3452 Returns 0 on success.
3453 3453 """
3454 3454
3455 3455 revs = opts.get('rev')
3456 3456 change = opts.get('change')
3457 3457
3458 3458 if revs and change:
3459 3459 msg = _('cannot specify --rev and --change at the same time')
3460 3460 raise util.Abort(msg)
3461 3461 elif change:
3462 3462 node2 = repo.lookup(change)
3463 3463 node1 = repo[node2].parents()[0].node()
3464 3464 else:
3465 3465 node1, node2 = cmdutil.revpair(repo, revs)
3466 3466
3467 3467 cwd = (pats and repo.getcwd()) or ''
3468 3468 end = opts.get('print0') and '\0' or '\n'
3469 3469 copy = {}
3470 3470 states = 'modified added removed deleted unknown ignored clean'.split()
3471 3471 show = [k for k in states if opts.get(k)]
3472 3472 if opts.get('all'):
3473 3473 show += ui.quiet and (states[:4] + ['clean']) or states
3474 3474 if not show:
3475 3475 show = ui.quiet and states[:4] or states[:5]
3476 3476
3477 3477 stat = repo.status(node1, node2, cmdutil.match(repo, pats, opts),
3478 3478 'ignored' in show, 'clean' in show, 'unknown' in show,
3479 3479 opts.get('subrepos'))
3480 3480 changestates = zip(states, 'MAR!?IC', stat)
3481 3481
3482 3482 if (opts.get('all') or opts.get('copies')) and not opts.get('no_status'):
3483 3483 ctxn = repo[nullid]
3484 3484 ctx1 = repo[node1]
3485 3485 ctx2 = repo[node2]
3486 3486 added = stat[1]
3487 3487 if node2 is None:
3488 3488 added = stat[0] + stat[1] # merged?
3489 3489
3490 3490 for k, v in copies.copies(repo, ctx1, ctx2, ctxn)[0].iteritems():
3491 3491 if k in added:
3492 3492 copy[k] = v
3493 3493 elif v in added:
3494 3494 copy[v] = k
3495 3495
3496 3496 for state, char, files in changestates:
3497 3497 if state in show:
3498 3498 format = "%s %%s%s" % (char, end)
3499 3499 if opts.get('no_status'):
3500 3500 format = "%%s%s" % end
3501 3501
3502 3502 for f in files:
3503 3503 ui.write(format % repo.pathto(f, cwd),
3504 3504 label='status.' + state)
3505 3505 if f in copy:
3506 3506 ui.write(' %s%s' % (repo.pathto(copy[f], cwd), end),
3507 3507 label='status.copied')
3508 3508
3509 3509 def summary(ui, repo, **opts):
3510 3510 """summarize working directory state
3511 3511
3512 3512 This generates a brief summary of the working directory state,
3513 3513 including parents, branch, commit status, and available updates.
3514 3514
3515 3515 With the --remote option, this will check the default paths for
3516 3516 incoming and outgoing changes. This can be time-consuming.
3517 3517
3518 3518 Returns 0 on success.
3519 3519 """
3520 3520
3521 3521 ctx = repo[None]
3522 3522 parents = ctx.parents()
3523 3523 pnode = parents[0].node()
3524 3524
3525 3525 for p in parents:
3526 3526 # label with log.changeset (instead of log.parent) since this
3527 3527 # shows a working directory parent *changeset*:
3528 3528 ui.write(_('parent: %d:%s ') % (p.rev(), str(p)),
3529 3529 label='log.changeset')
3530 3530 ui.write(' '.join(p.tags()), label='log.tag')
3531 3531 if p.rev() == -1:
3532 3532 if not len(repo):
3533 3533 ui.write(_(' (empty repository)'))
3534 3534 else:
3535 3535 ui.write(_(' (no revision checked out)'))
3536 3536 ui.write('\n')
3537 3537 if p.description():
3538 3538 ui.status(' ' + p.description().splitlines()[0].strip() + '\n',
3539 3539 label='log.summary')
3540 3540
3541 3541 branch = ctx.branch()
3542 3542 bheads = repo.branchheads(branch)
3543 3543 m = _('branch: %s\n') % branch
3544 3544 if branch != 'default':
3545 3545 ui.write(m, label='log.branch')
3546 3546 else:
3547 3547 ui.status(m, label='log.branch')
3548 3548
3549 3549 st = list(repo.status(unknown=True))[:6]
3550 3550
3551 3551 c = repo.dirstate.copies()
3552 3552 copied, renamed = [], []
3553 3553 for d, s in c.iteritems():
3554 3554 if s in st[2]:
3555 3555 st[2].remove(s)
3556 3556 renamed.append(d)
3557 3557 else:
3558 3558 copied.append(d)
3559 3559 if d in st[1]:
3560 3560 st[1].remove(d)
3561 3561 st.insert(3, renamed)
3562 3562 st.insert(4, copied)
3563 3563
3564 3564 ms = mergemod.mergestate(repo)
3565 3565 st.append([f for f in ms if ms[f] == 'u'])
3566 3566
3567 3567 subs = [s for s in ctx.substate if ctx.sub(s).dirty()]
3568 3568 st.append(subs)
3569 3569
3570 3570 labels = [ui.label(_('%d modified'), 'status.modified'),
3571 3571 ui.label(_('%d added'), 'status.added'),
3572 3572 ui.label(_('%d removed'), 'status.removed'),
3573 3573 ui.label(_('%d renamed'), 'status.copied'),
3574 3574 ui.label(_('%d copied'), 'status.copied'),
3575 3575 ui.label(_('%d deleted'), 'status.deleted'),
3576 3576 ui.label(_('%d unknown'), 'status.unknown'),
3577 3577 ui.label(_('%d ignored'), 'status.ignored'),
3578 3578 ui.label(_('%d unresolved'), 'resolve.unresolved'),
3579 3579 ui.label(_('%d subrepos'), 'status.modified')]
3580 3580 t = []
3581 3581 for s, l in zip(st, labels):
3582 3582 if s:
3583 3583 t.append(l % len(s))
3584 3584
3585 3585 t = ', '.join(t)
3586 3586 cleanworkdir = False
3587 3587
3588 3588 if len(parents) > 1:
3589 3589 t += _(' (merge)')
3590 3590 elif branch != parents[0].branch():
3591 3591 t += _(' (new branch)')
3592 3592 elif (parents[0].extra().get('close') and
3593 3593 pnode in repo.branchheads(branch, closed=True)):
3594 3594 t += _(' (head closed)')
3595 3595 elif not (st[0] or st[1] or st[2] or st[3] or st[4] or st[9]):
3596 3596 t += _(' (clean)')
3597 3597 cleanworkdir = True
3598 3598 elif pnode not in bheads:
3599 3599 t += _(' (new branch head)')
3600 3600
3601 3601 if cleanworkdir:
3602 3602 ui.status(_('commit: %s\n') % t.strip())
3603 3603 else:
3604 3604 ui.write(_('commit: %s\n') % t.strip())
3605 3605
3606 3606 # all ancestors of branch heads - all ancestors of parent = new csets
3607 3607 new = [0] * len(repo)
3608 3608 cl = repo.changelog
3609 3609 for a in [cl.rev(n) for n in bheads]:
3610 3610 new[a] = 1
3611 3611 for a in cl.ancestors(*[cl.rev(n) for n in bheads]):
3612 3612 new[a] = 1
3613 3613 for a in [p.rev() for p in parents]:
3614 3614 if a >= 0:
3615 3615 new[a] = 0
3616 3616 for a in cl.ancestors(*[p.rev() for p in parents]):
3617 3617 new[a] = 0
3618 3618 new = sum(new)
3619 3619
3620 3620 if new == 0:
3621 3621 ui.status(_('update: (current)\n'))
3622 3622 elif pnode not in bheads:
3623 3623 ui.write(_('update: %d new changesets (update)\n') % new)
3624 3624 else:
3625 3625 ui.write(_('update: %d new changesets, %d branch heads (merge)\n') %
3626 3626 (new, len(bheads)))
3627 3627
3628 3628 if opts.get('remote'):
3629 3629 t = []
3630 3630 source, branches = hg.parseurl(ui.expandpath('default'))
3631 3631 other = hg.repository(hg.remoteui(repo, {}), source)
3632 3632 revs, checkout = hg.addbranchrevs(repo, other, branches, opts.get('rev'))
3633 3633 ui.debug('comparing with %s\n' % url.hidepassword(source))
3634 3634 repo.ui.pushbuffer()
3635 3635 common, incoming, rheads = discovery.findcommonincoming(repo, other)
3636 3636 repo.ui.popbuffer()
3637 3637 if incoming:
3638 3638 t.append(_('1 or more incoming'))
3639 3639
3640 3640 dest, branches = hg.parseurl(ui.expandpath('default-push', 'default'))
3641 3641 revs, checkout = hg.addbranchrevs(repo, repo, branches, None)
3642 3642 other = hg.repository(hg.remoteui(repo, {}), dest)
3643 3643 ui.debug('comparing with %s\n' % url.hidepassword(dest))
3644 3644 repo.ui.pushbuffer()
3645 3645 o = discovery.findoutgoing(repo, other)
3646 3646 repo.ui.popbuffer()
3647 3647 o = repo.changelog.nodesbetween(o, None)[0]
3648 3648 if o:
3649 3649 t.append(_('%d outgoing') % len(o))
3650 3650
3651 3651 if t:
3652 3652 ui.write(_('remote: %s\n') % (', '.join(t)))
3653 3653 else:
3654 3654 ui.status(_('remote: (synced)\n'))
3655 3655
3656 3656 def tag(ui, repo, name1, *names, **opts):
3657 3657 """add one or more tags for the current or given revision
3658 3658
3659 3659 Name a particular revision using <name>.
3660 3660
3661 3661 Tags are used to name particular revisions of the repository and are
3662 3662 very useful to compare different revisions, to go back to significant
3663 earlier versions or to mark branch points as releases, etc.
3663 earlier versions or to mark branch points as releases, etc. Changing
3664 an existing tag is normally disallowed; use -f/--force to override.
3664 3665
3665 3666 If no revision is given, the parent of the working directory is
3666 3667 used, or tip if no revision is checked out.
3667 3668
3668 3669 To facilitate version control, distribution, and merging of tags,
3669 they are stored as a file named ".hgtags" which is managed
3670 similarly to other project files and can be hand-edited if
3671 necessary. The file '.hg/localtags' is used for local tags (not
3672 shared among repositories).
3670 they are stored as a file named ".hgtags" which is managed similarly
3671 to other project files and can be hand-edited if necessary. This
3672 also means that tagging creates a new commit. The file
3673 ".hg/localtags" is used for local tags (not shared among
3674 repositories).
3675
3676 Tag commits are usually made at the head of a branch. If the parent
3677 of the working directory is not a branch head, :hg:`tag` aborts; use
3678 -f/--force to force the tag commit to be based on a non-head
3679 changeset.
3673 3680
3674 3681 See :hg:`help dates` for a list of formats valid for -d/--date.
3675 3682
3676 3683 Since tag names have priority over branch names during revision
3677 3684 lookup, using an existing branch name as a tag name is discouraged.
3678 3685
3679 3686 Returns 0 on success.
3680 3687 """
3681 3688
3682 3689 rev_ = "."
3683 3690 names = [t.strip() for t in (name1,) + names]
3684 3691 if len(names) != len(set(names)):
3685 3692 raise util.Abort(_('tag names must be unique'))
3686 3693 for n in names:
3687 3694 if n in ['tip', '.', 'null']:
3688 3695 raise util.Abort(_('the name \'%s\' is reserved') % n)
3689 3696 if not n:
3690 3697 raise util.Abort(_('tag names cannot consist entirely of whitespace'))
3691 3698 if opts.get('rev') and opts.get('remove'):
3692 3699 raise util.Abort(_("--rev and --remove are incompatible"))
3693 3700 if opts.get('rev'):
3694 3701 rev_ = opts['rev']
3695 3702 message = opts.get('message')
3696 3703 if opts.get('remove'):
3697 3704 expectedtype = opts.get('local') and 'local' or 'global'
3698 3705 for n in names:
3699 3706 if not repo.tagtype(n):
3700 3707 raise util.Abort(_('tag \'%s\' does not exist') % n)
3701 3708 if repo.tagtype(n) != expectedtype:
3702 3709 if expectedtype == 'global':
3703 3710 raise util.Abort(_('tag \'%s\' is not a global tag') % n)
3704 3711 else:
3705 3712 raise util.Abort(_('tag \'%s\' is not a local tag') % n)
3706 3713 rev_ = nullid
3707 3714 if not message:
3708 3715 # we don't translate commit messages
3709 3716 message = 'Removed tag %s' % ', '.join(names)
3710 3717 elif not opts.get('force'):
3711 3718 for n in names:
3712 3719 if n in repo.tags():
3713 3720 raise util.Abort(_('tag \'%s\' already exists '
3714 3721 '(use -f to force)') % n)
3715 if not opts.get('local') and repo.dirstate.parents()[1] != nullid:
3722 if not opts.get('local'):
3723 p1, p2 = repo.dirstate.parents()
3724 if p2 != nullid:
3716 3725 raise util.Abort(_('uncommitted merge'))
3726 bheads = repo.branchheads()
3727 if not opts.get('force') and bheads and p1 not in bheads:
3728 raise util.Abort(_('not at a branch head (use -f to force)'))
3717 3729 r = repo[rev_].node()
3718 3730
3719 3731 if not message:
3720 3732 # we don't translate commit messages
3721 3733 message = ('Added tag %s for changeset %s' %
3722 3734 (', '.join(names), short(r)))
3723 3735
3724 3736 date = opts.get('date')
3725 3737 if date:
3726 3738 date = util.parsedate(date)
3727 3739
3728 3740 if opts.get('edit'):
3729 3741 message = ui.edit(message, ui.username())
3730 3742
3731 3743 repo.tag(names, r, message, opts.get('local'), opts.get('user'), date)
3732 3744
3733 3745 def tags(ui, repo):
3734 3746 """list repository tags
3735 3747
3736 3748 This lists both regular and local tags. When the -v/--verbose
3737 3749 switch is used, a third column "local" is printed for local tags.
3738 3750
3739 3751 Returns 0 on success.
3740 3752 """
3741 3753
3742 3754 hexfunc = ui.debugflag and hex or short
3743 3755 tagtype = ""
3744 3756
3745 3757 for t, n in reversed(repo.tagslist()):
3746 3758 if ui.quiet:
3747 3759 ui.write("%s\n" % t)
3748 3760 continue
3749 3761
3750 3762 try:
3751 3763 hn = hexfunc(n)
3752 3764 r = "%5d:%s" % (repo.changelog.rev(n), hn)
3753 3765 except error.LookupError:
3754 3766 r = " ?:%s" % hn
3755 3767 else:
3756 3768 spaces = " " * (30 - encoding.colwidth(t))
3757 3769 if ui.verbose:
3758 3770 if repo.tagtype(t) == 'local':
3759 3771 tagtype = " local"
3760 3772 else:
3761 3773 tagtype = ""
3762 3774 ui.write("%s%s %s%s\n" % (t, spaces, r, tagtype))
3763 3775
3764 3776 def tip(ui, repo, **opts):
3765 3777 """show the tip revision
3766 3778
3767 3779 The tip revision (usually just called the tip) is the changeset
3768 3780 most recently added to the repository (and therefore the most
3769 3781 recently changed head).
3770 3782
3771 3783 If you have just made a commit, that commit will be the tip. If
3772 3784 you have just pulled changes from another repository, the tip of
3773 3785 that repository becomes the current tip. The "tip" tag is special
3774 3786 and cannot be renamed or assigned to a different changeset.
3775 3787
3776 3788 Returns 0 on success.
3777 3789 """
3778 3790 displayer = cmdutil.show_changeset(ui, repo, opts)
3779 3791 displayer.show(repo[len(repo) - 1])
3780 3792 displayer.close()
3781 3793
3782 3794 def unbundle(ui, repo, fname1, *fnames, **opts):
3783 3795 """apply one or more changegroup files
3784 3796
3785 3797 Apply one or more compressed changegroup files generated by the
3786 3798 bundle command.
3787 3799
3788 3800 Returns 0 on success, 1 if an update has unresolved files.
3789 3801 """
3790 3802 fnames = (fname1,) + fnames
3791 3803
3792 3804 lock = repo.lock()
3793 3805 try:
3794 3806 for fname in fnames:
3795 3807 f = url.open(ui, fname)
3796 3808 gen = changegroup.readbundle(f, fname)
3797 3809 modheads = repo.addchangegroup(gen, 'unbundle', 'bundle:' + fname,
3798 3810 lock=lock)
3799 3811 finally:
3800 3812 lock.release()
3801 3813
3802 3814 return postincoming(ui, repo, modheads, opts.get('update'), None)
3803 3815
3804 3816 def update(ui, repo, node=None, rev=None, clean=False, date=None, check=False):
3805 3817 """update working directory (or switch revisions)
3806 3818
3807 3819 Update the repository's working directory to the specified
3808 3820 changeset. If no changeset is specified, update to the tip of the
3809 3821 current named branch.
3810 3822
3811 3823 If the changeset is not a descendant of the working directory's
3812 3824 parent, the update is aborted. With the -c/--check option, the
3813 3825 working directory is checked for uncommitted changes; if none are
3814 3826 found, the working directory is updated to the specified
3815 3827 changeset.
3816 3828
3817 3829 The following rules apply when the working directory contains
3818 3830 uncommitted changes:
3819 3831
3820 3832 1. If neither -c/--check nor -C/--clean is specified, and if
3821 3833 the requested changeset is an ancestor or descendant of
3822 3834 the working directory's parent, the uncommitted changes
3823 3835 are merged into the requested changeset and the merged
3824 3836 result is left uncommitted. If the requested changeset is
3825 3837 not an ancestor or descendant (that is, it is on another
3826 3838 branch), the update is aborted and the uncommitted changes
3827 3839 are preserved.
3828 3840
3829 3841 2. With the -c/--check option, the update is aborted and the
3830 3842 uncommitted changes are preserved.
3831 3843
3832 3844 3. With the -C/--clean option, uncommitted changes are discarded and
3833 3845 the working directory is updated to the requested changeset.
3834 3846
3835 3847 Use null as the changeset to remove the working directory (like
3836 3848 :hg:`clone -U`).
3837 3849
3838 3850 If you want to update just one file to an older changeset, use
3839 3851 :hg:`revert`.
3840 3852
3841 3853 See :hg:`help dates` for a list of formats valid for -d/--date.
3842 3854
3843 3855 Returns 0 on success, 1 if there are unresolved files.
3844 3856 """
3845 3857 if rev and node:
3846 3858 raise util.Abort(_("please specify just one revision"))
3847 3859
3848 3860 if not rev:
3849 3861 rev = node
3850 3862
3851 3863 rev = cmdutil.revsingle(repo, rev, rev).rev()
3852 3864
3853 3865 if check and clean:
3854 3866 raise util.Abort(_("cannot specify both -c/--check and -C/--clean"))
3855 3867
3856 3868 if check:
3857 3869 # we could use dirty() but we can ignore merge and branch trivia
3858 3870 c = repo[None]
3859 3871 if c.modified() or c.added() or c.removed():
3860 3872 raise util.Abort(_("uncommitted local changes"))
3861 3873
3862 3874 if date:
3863 3875 if rev:
3864 3876 raise util.Abort(_("you can't specify a revision and a date"))
3865 3877 rev = cmdutil.finddate(ui, repo, date)
3866 3878
3867 3879 if clean or check:
3868 3880 return hg.clean(repo, rev)
3869 3881 else:
3870 3882 return hg.update(repo, rev)
3871 3883
3872 3884 def verify(ui, repo):
3873 3885 """verify the integrity of the repository
3874 3886
3875 3887 Verify the integrity of the current repository.
3876 3888
3877 3889 This will perform an extensive check of the repository's
3878 3890 integrity, validating the hashes and checksums of each entry in
3879 3891 the changelog, manifest, and tracked files, as well as the
3880 3892 integrity of their crosslinks and indices.
3881 3893
3882 3894 Returns 0 on success, 1 if errors are encountered.
3883 3895 """
3884 3896 return hg.verify(repo)
3885 3897
3886 3898 def version_(ui):
3887 3899 """output version and copyright information"""
3888 3900 ui.write(_("Mercurial Distributed SCM (version %s)\n")
3889 3901 % util.version())
3890 3902 ui.status(_(
3891 3903 "(see http://mercurial.selenic.com for more information)\n"
3892 3904 "\nCopyright (C) 2005-2010 Matt Mackall and others\n"
3893 3905 "This is free software; see the source for copying conditions. "
3894 3906 "There is NO\nwarranty; "
3895 3907 "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
3896 3908 ))
3897 3909
3898 3910 # Command options and aliases are listed here, alphabetically
3899 3911
3900 3912 globalopts = [
3901 3913 ('R', 'repository', '',
3902 3914 _('repository root directory or name of overlay bundle file'),
3903 3915 _('REPO')),
3904 3916 ('', 'cwd', '',
3905 3917 _('change working directory'), _('DIR')),
3906 3918 ('y', 'noninteractive', None,
3907 3919 _('do not prompt, assume \'yes\' for any required answers')),
3908 3920 ('q', 'quiet', None, _('suppress output')),
3909 3921 ('v', 'verbose', None, _('enable additional output')),
3910 3922 ('', 'config', [],
3911 3923 _('set/override config option (use \'section.name=value\')'),
3912 3924 _('CONFIG')),
3913 3925 ('', 'debug', None, _('enable debugging output')),
3914 3926 ('', 'debugger', None, _('start debugger')),
3915 3927 ('', 'encoding', encoding.encoding, _('set the charset encoding'),
3916 3928 _('ENCODE')),
3917 3929 ('', 'encodingmode', encoding.encodingmode,
3918 3930 _('set the charset encoding mode'), _('MODE')),
3919 3931 ('', 'traceback', None, _('always print a traceback on exception')),
3920 3932 ('', 'time', None, _('time how long the command takes')),
3921 3933 ('', 'profile', None, _('print command execution profile')),
3922 3934 ('', 'version', None, _('output version information and exit')),
3923 3935 ('h', 'help', None, _('display help and exit')),
3924 3936 ]
3925 3937
3926 3938 dryrunopts = [('n', 'dry-run', None,
3927 3939 _('do not perform actions, just print output'))]
3928 3940
3929 3941 remoteopts = [
3930 3942 ('e', 'ssh', '',
3931 3943 _('specify ssh command to use'), _('CMD')),
3932 3944 ('', 'remotecmd', '',
3933 3945 _('specify hg command to run on the remote side'), _('CMD')),
3934 3946 ]
3935 3947
3936 3948 walkopts = [
3937 3949 ('I', 'include', [],
3938 3950 _('include names matching the given patterns'), _('PATTERN')),
3939 3951 ('X', 'exclude', [],
3940 3952 _('exclude names matching the given patterns'), _('PATTERN')),
3941 3953 ]
3942 3954
3943 3955 commitopts = [
3944 3956 ('m', 'message', '',
3945 3957 _('use text as commit message'), _('TEXT')),
3946 3958 ('l', 'logfile', '',
3947 3959 _('read commit message from file'), _('FILE')),
3948 3960 ]
3949 3961
3950 3962 commitopts2 = [
3951 3963 ('d', 'date', '',
3952 3964 _('record datecode as commit date'), _('DATE')),
3953 3965 ('u', 'user', '',
3954 3966 _('record the specified user as committer'), _('USER')),
3955 3967 ]
3956 3968
3957 3969 templateopts = [
3958 3970 ('', 'style', '',
3959 3971 _('display using template map file'), _('STYLE')),
3960 3972 ('', 'template', '',
3961 3973 _('display with template'), _('TEMPLATE')),
3962 3974 ]
3963 3975
3964 3976 logopts = [
3965 3977 ('p', 'patch', None, _('show patch')),
3966 3978 ('g', 'git', None, _('use git extended diff format')),
3967 3979 ('l', 'limit', '',
3968 3980 _('limit number of changes displayed'), _('NUM')),
3969 3981 ('M', 'no-merges', None, _('do not show merges')),
3970 3982 ('', 'stat', None, _('output diffstat-style summary of changes')),
3971 3983 ] + templateopts
3972 3984
3973 3985 diffopts = [
3974 3986 ('a', 'text', None, _('treat all files as text')),
3975 3987 ('g', 'git', None, _('use git extended diff format')),
3976 3988 ('', 'nodates', None, _('omit dates from diff headers'))
3977 3989 ]
3978 3990
3979 3991 diffopts2 = [
3980 3992 ('p', 'show-function', None, _('show which function each change is in')),
3981 3993 ('', 'reverse', None, _('produce a diff that undoes the changes')),
3982 3994 ('w', 'ignore-all-space', None,
3983 3995 _('ignore white space when comparing lines')),
3984 3996 ('b', 'ignore-space-change', None,
3985 3997 _('ignore changes in the amount of white space')),
3986 3998 ('B', 'ignore-blank-lines', None,
3987 3999 _('ignore changes whose lines are all blank')),
3988 4000 ('U', 'unified', '',
3989 4001 _('number of lines of context to show'), _('NUM')),
3990 4002 ('', 'stat', None, _('output diffstat-style summary of changes')),
3991 4003 ]
3992 4004
3993 4005 similarityopts = [
3994 4006 ('s', 'similarity', '',
3995 4007 _('guess renamed files by similarity (0<=s<=100)'), _('SIMILARITY'))
3996 4008 ]
3997 4009
3998 4010 subrepoopts = [
3999 4011 ('S', 'subrepos', None,
4000 4012 _('recurse into subrepositories'))
4001 4013 ]
4002 4014
4003 4015 table = {
4004 4016 "^add": (add, walkopts + subrepoopts + dryrunopts,
4005 4017 _('[OPTION]... [FILE]...')),
4006 4018 "addremove":
4007 4019 (addremove, similarityopts + walkopts + dryrunopts,
4008 4020 _('[OPTION]... [FILE]...')),
4009 4021 "^annotate|blame":
4010 4022 (annotate,
4011 4023 [('r', 'rev', '',
4012 4024 _('annotate the specified revision'), _('REV')),
4013 4025 ('', 'follow', None,
4014 4026 _('follow copies/renames and list the filename (DEPRECATED)')),
4015 4027 ('', 'no-follow', None, _("don't follow copies and renames")),
4016 4028 ('a', 'text', None, _('treat all files as text')),
4017 4029 ('u', 'user', None, _('list the author (long with -v)')),
4018 4030 ('f', 'file', None, _('list the filename')),
4019 4031 ('d', 'date', None, _('list the date (short with -q)')),
4020 4032 ('n', 'number', None, _('list the revision number (default)')),
4021 4033 ('c', 'changeset', None, _('list the changeset')),
4022 4034 ('l', 'line-number', None,
4023 4035 _('show line number at the first appearance'))
4024 4036 ] + walkopts,
4025 4037 _('[-r REV] [-f] [-a] [-u] [-d] [-n] [-c] [-l] FILE...')),
4026 4038 "archive":
4027 4039 (archive,
4028 4040 [('', 'no-decode', None, _('do not pass files through decoders')),
4029 4041 ('p', 'prefix', '',
4030 4042 _('directory prefix for files in archive'), _('PREFIX')),
4031 4043 ('r', 'rev', '',
4032 4044 _('revision to distribute'), _('REV')),
4033 4045 ('t', 'type', '',
4034 4046 _('type of distribution to create'), _('TYPE')),
4035 4047 ] + subrepoopts + walkopts,
4036 4048 _('[OPTION]... DEST')),
4037 4049 "backout":
4038 4050 (backout,
4039 4051 [('', 'merge', None,
4040 4052 _('merge with old dirstate parent after backout')),
4041 4053 ('', 'parent', '',
4042 4054 _('parent to choose when backing out merge'), _('REV')),
4043 4055 ('t', 'tool', '',
4044 4056 _('specify merge tool')),
4045 4057 ('r', 'rev', '',
4046 4058 _('revision to backout'), _('REV')),
4047 4059 ] + walkopts + commitopts + commitopts2,
4048 4060 _('[OPTION]... [-r] REV')),
4049 4061 "bisect":
4050 4062 (bisect,
4051 4063 [('r', 'reset', False, _('reset bisect state')),
4052 4064 ('g', 'good', False, _('mark changeset good')),
4053 4065 ('b', 'bad', False, _('mark changeset bad')),
4054 4066 ('s', 'skip', False, _('skip testing changeset')),
4055 4067 ('c', 'command', '',
4056 4068 _('use command to check changeset state'), _('CMD')),
4057 4069 ('U', 'noupdate', False, _('do not update to target'))],
4058 4070 _("[-gbsr] [-U] [-c CMD] [REV]")),
4059 4071 "branch":
4060 4072 (branch,
4061 4073 [('f', 'force', None,
4062 4074 _('set branch name even if it shadows an existing branch')),
4063 4075 ('C', 'clean', None, _('reset branch name to parent branch name'))],
4064 4076 _('[-fC] [NAME]')),
4065 4077 "branches":
4066 4078 (branches,
4067 4079 [('a', 'active', False,
4068 4080 _('show only branches that have unmerged heads')),
4069 4081 ('c', 'closed', False,
4070 4082 _('show normal and closed branches'))],
4071 4083 _('[-ac]')),
4072 4084 "bundle":
4073 4085 (bundle,
4074 4086 [('f', 'force', None,
4075 4087 _('run even when the destination is unrelated')),
4076 4088 ('r', 'rev', [],
4077 4089 _('a changeset intended to be added to the destination'),
4078 4090 _('REV')),
4079 4091 ('b', 'branch', [],
4080 4092 _('a specific branch you would like to bundle'),
4081 4093 _('BRANCH')),
4082 4094 ('', 'base', [],
4083 4095 _('a base changeset assumed to be available at the destination'),
4084 4096 _('REV')),
4085 4097 ('a', 'all', None, _('bundle all changesets in the repository')),
4086 4098 ('t', 'type', 'bzip2',
4087 4099 _('bundle compression type to use'), _('TYPE')),
4088 4100 ] + remoteopts,
4089 4101 _('[-f] [-t TYPE] [-a] [-r REV]... [--base REV]... FILE [DEST]')),
4090 4102 "cat":
4091 4103 (cat,
4092 4104 [('o', 'output', '',
4093 4105 _('print output to file with formatted name'), _('FORMAT')),
4094 4106 ('r', 'rev', '',
4095 4107 _('print the given revision'), _('REV')),
4096 4108 ('', 'decode', None, _('apply any matching decode filter')),
4097 4109 ] + walkopts,
4098 4110 _('[OPTION]... FILE...')),
4099 4111 "^clone":
4100 4112 (clone,
4101 4113 [('U', 'noupdate', None,
4102 4114 _('the clone will include an empty working copy (only a repository)')),
4103 4115 ('u', 'updaterev', '',
4104 4116 _('revision, tag or branch to check out'), _('REV')),
4105 4117 ('r', 'rev', [],
4106 4118 _('include the specified changeset'), _('REV')),
4107 4119 ('b', 'branch', [],
4108 4120 _('clone only the specified branch'), _('BRANCH')),
4109 4121 ('', 'pull', None, _('use pull protocol to copy metadata')),
4110 4122 ('', 'uncompressed', None,
4111 4123 _('use uncompressed transfer (fast over LAN)')),
4112 4124 ] + remoteopts,
4113 4125 _('[OPTION]... SOURCE [DEST]')),
4114 4126 "^commit|ci":
4115 4127 (commit,
4116 4128 [('A', 'addremove', None,
4117 4129 _('mark new/missing files as added/removed before committing')),
4118 4130 ('', 'close-branch', None,
4119 4131 _('mark a branch as closed, hiding it from the branch list')),
4120 4132 ] + walkopts + commitopts + commitopts2,
4121 4133 _('[OPTION]... [FILE]...')),
4122 4134 "copy|cp":
4123 4135 (copy,
4124 4136 [('A', 'after', None, _('record a copy that has already occurred')),
4125 4137 ('f', 'force', None,
4126 4138 _('forcibly copy over an existing managed file')),
4127 4139 ] + walkopts + dryrunopts,
4128 4140 _('[OPTION]... [SOURCE]... DEST')),
4129 4141 "debugancestor": (debugancestor, [], _('[INDEX] REV1 REV2')),
4130 4142 "debugbuilddag":
4131 4143 (debugbuilddag,
4132 4144 [('m', 'mergeable-file', None, _('add single file mergeable changes')),
4133 4145 ('a', 'appended-file', None, _('add single file all revs append to')),
4134 4146 ('o', 'overwritten-file', None, _('add single file all revs overwrite')),
4135 4147 ('n', 'new-file', None, _('add new file at each rev')),
4136 4148 ],
4137 4149 _('[OPTION]... TEXT')),
4138 4150 "debugcheckstate": (debugcheckstate, [], ''),
4139 4151 "debugcommands": (debugcommands, [], _('[COMMAND]')),
4140 4152 "debugcomplete":
4141 4153 (debugcomplete,
4142 4154 [('o', 'options', None, _('show the command options'))],
4143 4155 _('[-o] CMD')),
4144 4156 "debugdag":
4145 4157 (debugdag,
4146 4158 [('t', 'tags', None, _('use tags as labels')),
4147 4159 ('b', 'branches', None, _('annotate with branch names')),
4148 4160 ('', 'dots', None, _('use dots for runs')),
4149 4161 ('s', 'spaces', None, _('separate elements by spaces')),
4150 4162 ],
4151 4163 _('[OPTION]... [FILE [REV]...]')),
4152 4164 "debugdate":
4153 4165 (debugdate,
4154 4166 [('e', 'extended', None, _('try extended date formats'))],
4155 4167 _('[-e] DATE [RANGE]')),
4156 4168 "debugdata": (debugdata, [], _('FILE REV')),
4157 4169 "debugfsinfo": (debugfsinfo, [], _('[PATH]')),
4158 4170 "debugindex": (debugindex,
4159 4171 [('f', 'format', 0, _('revlog format'), _('FORMAT'))],
4160 4172 _('FILE')),
4161 4173 "debugindexdot": (debugindexdot, [], _('FILE')),
4162 4174 "debuginstall": (debuginstall, [], ''),
4163 4175 "debugpushkey": (debugpushkey, [], _('REPO NAMESPACE [KEY OLD NEW]')),
4164 4176 "debugrebuildstate":
4165 4177 (debugrebuildstate,
4166 4178 [('r', 'rev', '',
4167 4179 _('revision to rebuild to'), _('REV'))],
4168 4180 _('[-r REV] [REV]')),
4169 4181 "debugrename":
4170 4182 (debugrename,
4171 4183 [('r', 'rev', '',
4172 4184 _('revision to debug'), _('REV'))],
4173 4185 _('[-r REV] FILE')),
4174 4186 "debugrevspec":
4175 4187 (debugrevspec, [], ('REVSPEC')),
4176 4188 "debugsetparents":
4177 4189 (debugsetparents, [], _('REV1 [REV2]')),
4178 4190 "debugstate":
4179 4191 (debugstate,
4180 4192 [('', 'nodates', None, _('do not display the saved mtime'))],
4181 4193 _('[OPTION]...')),
4182 4194 "debugsub":
4183 4195 (debugsub,
4184 4196 [('r', 'rev', '',
4185 4197 _('revision to check'), _('REV'))],
4186 4198 _('[-r REV] [REV]')),
4187 4199 "debugwalk": (debugwalk, walkopts, _('[OPTION]... [FILE]...')),
4188 4200 "^diff":
4189 4201 (diff,
4190 4202 [('r', 'rev', [],
4191 4203 _('revision'), _('REV')),
4192 4204 ('c', 'change', '',
4193 4205 _('change made by revision'), _('REV'))
4194 4206 ] + diffopts + diffopts2 + walkopts + subrepoopts,
4195 4207 _('[OPTION]... ([-c REV] | [-r REV1 [-r REV2]]) [FILE]...')),
4196 4208 "^export":
4197 4209 (export,
4198 4210 [('o', 'output', '',
4199 4211 _('print output to file with formatted name'), _('FORMAT')),
4200 4212 ('', 'switch-parent', None, _('diff against the second parent')),
4201 4213 ('r', 'rev', [],
4202 4214 _('revisions to export'), _('REV')),
4203 4215 ] + diffopts,
4204 4216 _('[OPTION]... [-o OUTFILESPEC] REV...')),
4205 4217 "^forget":
4206 4218 (forget,
4207 4219 [] + walkopts,
4208 4220 _('[OPTION]... FILE...')),
4209 4221 "grep":
4210 4222 (grep,
4211 4223 [('0', 'print0', None, _('end fields with NUL')),
4212 4224 ('', 'all', None, _('print all revisions that match')),
4213 4225 ('f', 'follow', None,
4214 4226 _('follow changeset history,'
4215 4227 ' or file history across copies and renames')),
4216 4228 ('i', 'ignore-case', None, _('ignore case when matching')),
4217 4229 ('l', 'files-with-matches', None,
4218 4230 _('print only filenames and revisions that match')),
4219 4231 ('n', 'line-number', None, _('print matching line numbers')),
4220 4232 ('r', 'rev', [],
4221 4233 _('only search files changed within revision range'), _('REV')),
4222 4234 ('u', 'user', None, _('list the author (long with -v)')),
4223 4235 ('d', 'date', None, _('list the date (short with -q)')),
4224 4236 ] + walkopts,
4225 4237 _('[OPTION]... PATTERN [FILE]...')),
4226 4238 "heads":
4227 4239 (heads,
4228 4240 [('r', 'rev', '',
4229 4241 _('show only heads which are descendants of STARTREV'),
4230 4242 _('STARTREV')),
4231 4243 ('t', 'topo', False, _('show topological heads only')),
4232 4244 ('a', 'active', False,
4233 4245 _('show active branchheads only (DEPRECATED)')),
4234 4246 ('c', 'closed', False,
4235 4247 _('show normal and closed branch heads')),
4236 4248 ] + templateopts,
4237 4249 _('[-ac] [-r STARTREV] [REV]...')),
4238 4250 "help": (help_, [], _('[TOPIC]')),
4239 4251 "identify|id":
4240 4252 (identify,
4241 4253 [('r', 'rev', '',
4242 4254 _('identify the specified revision'), _('REV')),
4243 4255 ('n', 'num', None, _('show local revision number')),
4244 4256 ('i', 'id', None, _('show global revision id')),
4245 4257 ('b', 'branch', None, _('show branch')),
4246 4258 ('t', 'tags', None, _('show tags'))],
4247 4259 _('[-nibt] [-r REV] [SOURCE]')),
4248 4260 "import|patch":
4249 4261 (import_,
4250 4262 [('p', 'strip', 1,
4251 4263 _('directory strip option for patch. This has the same '
4252 4264 'meaning as the corresponding patch option'),
4253 4265 _('NUM')),
4254 4266 ('b', 'base', '',
4255 4267 _('base path'), _('PATH')),
4256 4268 ('f', 'force', None,
4257 4269 _('skip check for outstanding uncommitted changes')),
4258 4270 ('', 'no-commit', None,
4259 4271 _("don't commit, just update the working directory")),
4260 4272 ('', 'exact', None,
4261 4273 _('apply patch to the nodes from which it was generated')),
4262 4274 ('', 'import-branch', None,
4263 4275 _('use any branch information in patch (implied by --exact)'))] +
4264 4276 commitopts + commitopts2 + similarityopts,
4265 4277 _('[OPTION]... PATCH...')),
4266 4278 "incoming|in":
4267 4279 (incoming,
4268 4280 [('f', 'force', None,
4269 4281 _('run even if remote repository is unrelated')),
4270 4282 ('n', 'newest-first', None, _('show newest record first')),
4271 4283 ('', 'bundle', '',
4272 4284 _('file to store the bundles into'), _('FILE')),
4273 4285 ('r', 'rev', [],
4274 4286 _('a remote changeset intended to be added'), _('REV')),
4275 4287 ('b', 'branch', [],
4276 4288 _('a specific branch you would like to pull'), _('BRANCH')),
4277 4289 ] + logopts + remoteopts + subrepoopts,
4278 4290 _('[-p] [-n] [-M] [-f] [-r REV]...'
4279 4291 ' [--bundle FILENAME] [SOURCE]')),
4280 4292 "^init":
4281 4293 (init,
4282 4294 remoteopts,
4283 4295 _('[-e CMD] [--remotecmd CMD] [DEST]')),
4284 4296 "locate":
4285 4297 (locate,
4286 4298 [('r', 'rev', '',
4287 4299 _('search the repository as it is in REV'), _('REV')),
4288 4300 ('0', 'print0', None,
4289 4301 _('end filenames with NUL, for use with xargs')),
4290 4302 ('f', 'fullpath', None,
4291 4303 _('print complete paths from the filesystem root')),
4292 4304 ] + walkopts,
4293 4305 _('[OPTION]... [PATTERN]...')),
4294 4306 "^log|history":
4295 4307 (log,
4296 4308 [('f', 'follow', None,
4297 4309 _('follow changeset history,'
4298 4310 ' or file history across copies and renames')),
4299 4311 ('', 'follow-first', None,
4300 4312 _('only follow the first parent of merge changesets')),
4301 4313 ('d', 'date', '',
4302 4314 _('show revisions matching date spec'), _('DATE')),
4303 4315 ('C', 'copies', None, _('show copied files')),
4304 4316 ('k', 'keyword', [],
4305 4317 _('do case-insensitive search for a given text'), _('TEXT')),
4306 4318 ('r', 'rev', [],
4307 4319 _('show the specified revision or range'), _('REV')),
4308 4320 ('', 'removed', None, _('include revisions where files were removed')),
4309 4321 ('m', 'only-merges', None, _('show only merges')),
4310 4322 ('u', 'user', [],
4311 4323 _('revisions committed by user'), _('USER')),
4312 4324 ('', 'only-branch', [],
4313 4325 _('show only changesets within the given named branch (DEPRECATED)'),
4314 4326 _('BRANCH')),
4315 4327 ('b', 'branch', [],
4316 4328 _('show changesets within the given named branch'), _('BRANCH')),
4317 4329 ('P', 'prune', [],
4318 4330 _('do not display revision or any of its ancestors'), _('REV')),
4319 4331 ] + logopts + walkopts,
4320 4332 _('[OPTION]... [FILE]')),
4321 4333 "manifest":
4322 4334 (manifest,
4323 4335 [('r', 'rev', '',
4324 4336 _('revision to display'), _('REV'))],
4325 4337 _('[-r REV]')),
4326 4338 "^merge":
4327 4339 (merge,
4328 4340 [('f', 'force', None, _('force a merge with outstanding changes')),
4329 4341 ('t', 'tool', '', _('specify merge tool')),
4330 4342 ('r', 'rev', '',
4331 4343 _('revision to merge'), _('REV')),
4332 4344 ('P', 'preview', None,
4333 4345 _('review revisions to merge (no merge is performed)'))],
4334 4346 _('[-P] [-f] [[-r] REV]')),
4335 4347 "outgoing|out":
4336 4348 (outgoing,
4337 4349 [('f', 'force', None,
4338 4350 _('run even when the destination is unrelated')),
4339 4351 ('r', 'rev', [],
4340 4352 _('a changeset intended to be included in the destination'),
4341 4353 _('REV')),
4342 4354 ('n', 'newest-first', None, _('show newest record first')),
4343 4355 ('b', 'branch', [],
4344 4356 _('a specific branch you would like to push'), _('BRANCH')),
4345 4357 ] + logopts + remoteopts + subrepoopts,
4346 4358 _('[-M] [-p] [-n] [-f] [-r REV]... [DEST]')),
4347 4359 "parents":
4348 4360 (parents,
4349 4361 [('r', 'rev', '',
4350 4362 _('show parents of the specified revision'), _('REV')),
4351 4363 ] + templateopts,
4352 4364 _('[-r REV] [FILE]')),
4353 4365 "paths": (paths, [], _('[NAME]')),
4354 4366 "^pull":
4355 4367 (pull,
4356 4368 [('u', 'update', None,
4357 4369 _('update to new branch head if changesets were pulled')),
4358 4370 ('f', 'force', None,
4359 4371 _('run even when remote repository is unrelated')),
4360 4372 ('r', 'rev', [],
4361 4373 _('a remote changeset intended to be added'), _('REV')),
4362 4374 ('b', 'branch', [],
4363 4375 _('a specific branch you would like to pull'), _('BRANCH')),
4364 4376 ] + remoteopts,
4365 4377 _('[-u] [-f] [-r REV]... [-e CMD] [--remotecmd CMD] [SOURCE]')),
4366 4378 "^push":
4367 4379 (push,
4368 4380 [('f', 'force', None, _('force push')),
4369 4381 ('r', 'rev', [],
4370 4382 _('a changeset intended to be included in the destination'),
4371 4383 _('REV')),
4372 4384 ('b', 'branch', [],
4373 4385 _('a specific branch you would like to push'), _('BRANCH')),
4374 4386 ('', 'new-branch', False, _('allow pushing a new branch')),
4375 4387 ] + remoteopts,
4376 4388 _('[-f] [-r REV]... [-e CMD] [--remotecmd CMD] [DEST]')),
4377 4389 "recover": (recover, []),
4378 4390 "^remove|rm":
4379 4391 (remove,
4380 4392 [('A', 'after', None, _('record delete for missing files')),
4381 4393 ('f', 'force', None,
4382 4394 _('remove (and delete) file even if added or modified')),
4383 4395 ] + walkopts,
4384 4396 _('[OPTION]... FILE...')),
4385 4397 "rename|move|mv":
4386 4398 (rename,
4387 4399 [('A', 'after', None, _('record a rename that has already occurred')),
4388 4400 ('f', 'force', None,
4389 4401 _('forcibly copy over an existing managed file')),
4390 4402 ] + walkopts + dryrunopts,
4391 4403 _('[OPTION]... SOURCE... DEST')),
4392 4404 "resolve":
4393 4405 (resolve,
4394 4406 [('a', 'all', None, _('select all unresolved files')),
4395 4407 ('l', 'list', None, _('list state of files needing merge')),
4396 4408 ('m', 'mark', None, _('mark files as resolved')),
4397 4409 ('u', 'unmark', None, _('mark files as unresolved')),
4398 4410 ('t', 'tool', '', _('specify merge tool')),
4399 4411 ('n', 'no-status', None, _('hide status prefix'))]
4400 4412 + walkopts,
4401 4413 _('[OPTION]... [FILE]...')),
4402 4414 "revert":
4403 4415 (revert,
4404 4416 [('a', 'all', None, _('revert all changes when no arguments given')),
4405 4417 ('d', 'date', '',
4406 4418 _('tipmost revision matching date'), _('DATE')),
4407 4419 ('r', 'rev', '',
4408 4420 _('revert to the specified revision'), _('REV')),
4409 4421 ('', 'no-backup', None, _('do not save backup copies of files')),
4410 4422 ] + walkopts + dryrunopts,
4411 4423 _('[OPTION]... [-r REV] [NAME]...')),
4412 4424 "rollback": (rollback, dryrunopts),
4413 4425 "root": (root, []),
4414 4426 "^serve":
4415 4427 (serve,
4416 4428 [('A', 'accesslog', '',
4417 4429 _('name of access log file to write to'), _('FILE')),
4418 4430 ('d', 'daemon', None, _('run server in background')),
4419 4431 ('', 'daemon-pipefds', '',
4420 4432 _('used internally by daemon mode'), _('NUM')),
4421 4433 ('E', 'errorlog', '',
4422 4434 _('name of error log file to write to'), _('FILE')),
4423 4435 # use string type, then we can check if something was passed
4424 4436 ('p', 'port', '',
4425 4437 _('port to listen on (default: 8000)'), _('PORT')),
4426 4438 ('a', 'address', '',
4427 4439 _('address to listen on (default: all interfaces)'), _('ADDR')),
4428 4440 ('', 'prefix', '',
4429 4441 _('prefix path to serve from (default: server root)'), _('PREFIX')),
4430 4442 ('n', 'name', '',
4431 4443 _('name to show in web pages (default: working directory)'),
4432 4444 _('NAME')),
4433 4445 ('', 'web-conf', '',
4434 4446 _('name of the hgweb config file (see "hg help hgweb")'),
4435 4447 _('FILE')),
4436 4448 ('', 'webdir-conf', '',
4437 4449 _('name of the hgweb config file (DEPRECATED)'), _('FILE')),
4438 4450 ('', 'pid-file', '',
4439 4451 _('name of file to write process ID to'), _('FILE')),
4440 4452 ('', 'stdio', None, _('for remote clients')),
4441 4453 ('t', 'templates', '',
4442 4454 _('web templates to use'), _('TEMPLATE')),
4443 4455 ('', 'style', '',
4444 4456 _('template style to use'), _('STYLE')),
4445 4457 ('6', 'ipv6', None, _('use IPv6 in addition to IPv4')),
4446 4458 ('', 'certificate', '',
4447 4459 _('SSL certificate file'), _('FILE'))],
4448 4460 _('[OPTION]...')),
4449 4461 "showconfig|debugconfig":
4450 4462 (showconfig,
4451 4463 [('u', 'untrusted', None, _('show untrusted configuration options'))],
4452 4464 _('[-u] [NAME]...')),
4453 4465 "^summary|sum":
4454 4466 (summary,
4455 4467 [('', 'remote', None, _('check for push and pull'))], '[--remote]'),
4456 4468 "^status|st":
4457 4469 (status,
4458 4470 [('A', 'all', None, _('show status of all files')),
4459 4471 ('m', 'modified', None, _('show only modified files')),
4460 4472 ('a', 'added', None, _('show only added files')),
4461 4473 ('r', 'removed', None, _('show only removed files')),
4462 4474 ('d', 'deleted', None, _('show only deleted (but tracked) files')),
4463 4475 ('c', 'clean', None, _('show only files without changes')),
4464 4476 ('u', 'unknown', None, _('show only unknown (not tracked) files')),
4465 4477 ('i', 'ignored', None, _('show only ignored files')),
4466 4478 ('n', 'no-status', None, _('hide status prefix')),
4467 4479 ('C', 'copies', None, _('show source of copied files')),
4468 4480 ('0', 'print0', None,
4469 4481 _('end filenames with NUL, for use with xargs')),
4470 4482 ('', 'rev', [],
4471 4483 _('show difference from revision'), _('REV')),
4472 4484 ('', 'change', '',
4473 4485 _('list the changed files of a revision'), _('REV')),
4474 4486 ] + walkopts + subrepoopts,
4475 4487 _('[OPTION]... [FILE]...')),
4476 4488 "tag":
4477 4489 (tag,
4478 [('f', 'force', None, _('replace existing tag')),
4490 [('f', 'force', None, _('force tag')),
4479 4491 ('l', 'local', None, _('make the tag local')),
4480 4492 ('r', 'rev', '',
4481 4493 _('revision to tag'), _('REV')),
4482 4494 ('', 'remove', None, _('remove a tag')),
4483 4495 # -l/--local is already there, commitopts cannot be used
4484 4496 ('e', 'edit', None, _('edit commit message')),
4485 4497 ('m', 'message', '',
4486 4498 _('use <text> as commit message'), _('TEXT')),
4487 4499 ] + commitopts2,
4488 4500 _('[-f] [-l] [-m TEXT] [-d DATE] [-u USER] [-r REV] NAME...')),
4489 4501 "tags": (tags, [], ''),
4490 4502 "tip":
4491 4503 (tip,
4492 4504 [('p', 'patch', None, _('show patch')),
4493 4505 ('g', 'git', None, _('use git extended diff format')),
4494 4506 ] + templateopts,
4495 4507 _('[-p] [-g]')),
4496 4508 "unbundle":
4497 4509 (unbundle,
4498 4510 [('u', 'update', None,
4499 4511 _('update to new branch head if changesets were unbundled'))],
4500 4512 _('[-u] FILE...')),
4501 4513 "^update|up|checkout|co":
4502 4514 (update,
4503 4515 [('C', 'clean', None, _('discard uncommitted changes (no backup)')),
4504 4516 ('c', 'check', None,
4505 4517 _('update across branches if no uncommitted changes')),
4506 4518 ('d', 'date', '',
4507 4519 _('tipmost revision matching date'), _('DATE')),
4508 4520 ('r', 'rev', '',
4509 4521 _('revision'), _('REV'))],
4510 4522 _('[-c] [-C] [-d DATE] [[-r] REV]')),
4511 4523 "verify": (verify, []),
4512 4524 "version": (version_, []),
4513 4525 }
4514 4526
4515 4527 norepo = ("clone init version help debugcommands debugcomplete"
4516 4528 " debugdate debuginstall debugfsinfo debugpushkey")
4517 4529 optionalrepo = ("identify paths serve showconfig debugancestor debugdag"
4518 4530 " debugdata debugindex debugindexdot")
@@ -1,16 +1,16 b''
1 1 $ rm -rf a
2 2 $ hg init a
3 3 $ cd a
4 4 $ echo a > a
5 5 $ hg ci -Am0
6 6 adding a
7 7 $ hg tag t1 # 1
8 8 $ hg tag --remove t1 # 2
9 9
10 10 $ hg co 1
11 11 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
12 $ hg tag -r0 t1
12 $ hg tag -f -r0 t1
13 13 $ hg tags
14 14 tip 3:a49829c4fc11
15 15 t1 0:f7b1eb17ad24
16 16
@@ -1,244 +1,278 b''
1 1 $ hg init test
2 2 $ cd test
3 3
4 4 $ echo a > a
5 5 $ hg add a
6 6 $ hg commit -m "test"
7 7 $ hg history
8 8 changeset: 0:acb14030fe0a
9 9 tag: tip
10 10 user: test
11 11 date: Thu Jan 01 00:00:00 1970 +0000
12 12 summary: test
13 13
14 14
15 15 $ hg tag ' '
16 16 abort: tag names cannot consist entirely of whitespace
17 17 [255]
18 18
19 19 $ hg tag "bleah"
20 20 $ hg history
21 21 changeset: 1:d4f0d2909abc
22 22 tag: tip
23 23 user: test
24 24 date: Thu Jan 01 00:00:00 1970 +0000
25 25 summary: Added tag bleah for changeset acb14030fe0a
26 26
27 27 changeset: 0:acb14030fe0a
28 28 tag: bleah
29 29 user: test
30 30 date: Thu Jan 01 00:00:00 1970 +0000
31 31 summary: test
32 32
33 33
34 34 $ echo foo >> .hgtags
35 35 $ hg tag "bleah2"
36 36 abort: working copy of .hgtags is changed (please commit .hgtags manually)
37 37 [255]
38 38
39 39 $ hg revert .hgtags
40 40 $ hg tag -r 0 x y z y y z
41 41 abort: tag names must be unique
42 42 [255]
43 43 $ hg tag tap nada dot tip null .
44 44 abort: the name 'tip' is reserved
45 45 [255]
46 46 $ hg tag "bleah"
47 47 abort: tag 'bleah' already exists (use -f to force)
48 48 [255]
49 49 $ hg tag "blecch" "bleah"
50 50 abort: tag 'bleah' already exists (use -f to force)
51 51 [255]
52 52
53 53 $ hg tag --remove "blecch"
54 54 abort: tag 'blecch' does not exist
55 55 [255]
56 56 $ hg tag --remove "bleah" "blecch" "blough"
57 57 abort: tag 'blecch' does not exist
58 58 [255]
59 59
60 60 $ hg tag -r 0 "bleah0"
61 61 $ hg tag -l -r 1 "bleah1"
62 62 $ hg tag gack gawk gorp
63 63 $ hg tag -f gack
64 64 $ hg tag --remove gack gorp
65 65
66 66 $ cat .hgtags
67 67 acb14030fe0a21b60322c440ad2d20cf7685a376 bleah
68 68 acb14030fe0a21b60322c440ad2d20cf7685a376 bleah0
69 69 336fccc858a4eb69609a291105009e484a6b6b8d gack
70 70 336fccc858a4eb69609a291105009e484a6b6b8d gawk
71 71 336fccc858a4eb69609a291105009e484a6b6b8d gorp
72 72 336fccc858a4eb69609a291105009e484a6b6b8d gack
73 73 799667b6f2d9b957f73fa644a918c2df22bab58f gack
74 74 799667b6f2d9b957f73fa644a918c2df22bab58f gack
75 75 0000000000000000000000000000000000000000 gack
76 76 336fccc858a4eb69609a291105009e484a6b6b8d gorp
77 77 0000000000000000000000000000000000000000 gorp
78 78 $ cat .hg/localtags
79 79 d4f0d2909abc9290e2773c08837d70c1794e3f5a bleah1
80 80
81 tagging on a non-head revision
82
81 83 $ hg update 0
82 84 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
85 $ hg tag -l localblah
83 86 $ hg tag "foobar"
87 abort: not at a branch head (use -f to force)
88 [255]
89 $ hg tag -f "foobar"
84 90 $ cat .hgtags
85 91 acb14030fe0a21b60322c440ad2d20cf7685a376 foobar
86 92 $ cat .hg/localtags
87 93 d4f0d2909abc9290e2773c08837d70c1794e3f5a bleah1
94 acb14030fe0a21b60322c440ad2d20cf7685a376 localblah
88 95
89 96 $ hg tag -l 'xx
90 97 > newline'
91 98 abort: '\n' cannot be used in a tag name
92 99 [255]
93 100 $ hg tag -l 'xx:xx'
94 101 abort: ':' cannot be used in a tag name
95 102 [255]
96 103
97 104 cloning local tags
98 105
99 106 $ cd ..
100 107 $ hg -R test log -r0:5
101 108 changeset: 0:acb14030fe0a
102 109 tag: bleah
103 110 tag: bleah0
104 111 tag: foobar
112 tag: localblah
105 113 user: test
106 114 date: Thu Jan 01 00:00:00 1970 +0000
107 115 summary: test
108 116
109 117 changeset: 1:d4f0d2909abc
110 118 tag: bleah1
111 119 user: test
112 120 date: Thu Jan 01 00:00:00 1970 +0000
113 121 summary: Added tag bleah for changeset acb14030fe0a
114 122
115 123 changeset: 2:336fccc858a4
116 124 tag: gawk
117 125 user: test
118 126 date: Thu Jan 01 00:00:00 1970 +0000
119 127 summary: Added tag bleah0 for changeset acb14030fe0a
120 128
121 129 changeset: 3:799667b6f2d9
122 130 user: test
123 131 date: Thu Jan 01 00:00:00 1970 +0000
124 132 summary: Added tag gack, gawk, gorp for changeset 336fccc858a4
125 133
126 134 changeset: 4:154eeb7c0138
127 135 user: test
128 136 date: Thu Jan 01 00:00:00 1970 +0000
129 137 summary: Added tag gack for changeset 799667b6f2d9
130 138
131 139 changeset: 5:b4bb47aaff09
132 140 user: test
133 141 date: Thu Jan 01 00:00:00 1970 +0000
134 142 summary: Removed tag gack, gorp
135 143
136 144 $ hg clone -q -rbleah1 test test1
137 145 $ hg -R test1 parents --style=compact
138 146 1[tip] d4f0d2909abc 1970-01-01 00:00 +0000 test
139 147 Added tag bleah for changeset acb14030fe0a
140 148
141 149 $ hg clone -q -r5 test#bleah1 test2
142 150 $ hg -R test2 parents --style=compact
143 151 5[tip] b4bb47aaff09 1970-01-01 00:00 +0000 test
144 152 Removed tag gack, gorp
145 153
146 154 $ hg clone -q -U test#bleah1 test3
147 155 $ hg -R test3 parents --style=compact
148 156
149 157 $ cd test
150 158
151 159 Issue601: hg tag doesn't do the right thing if .hgtags or localtags
152 160 doesn't end with EOL
153 161
154 162 $ python << EOF
155 163 > f = file('.hg/localtags'); last = f.readlines()[-1][:-1]; f.close()
156 164 > f = file('.hg/localtags', 'w'); f.write(last); f.close()
157 165 > EOF
158 166 $ cat .hg/localtags; echo
159 d4f0d2909abc9290e2773c08837d70c1794e3f5a bleah1
167 acb14030fe0a21b60322c440ad2d20cf7685a376 localblah
160 168 $ hg tag -l localnewline
161 169 $ cat .hg/localtags; echo
162 d4f0d2909abc9290e2773c08837d70c1794e3f5a bleah1
170 acb14030fe0a21b60322c440ad2d20cf7685a376 localblah
163 171 c2899151f4e76890c602a2597a650a72666681bf localnewline
164 172
165 173
166 174 $ python << EOF
167 175 > f = file('.hgtags'); last = f.readlines()[-1][:-1]; f.close()
168 176 > f = file('.hgtags', 'w'); f.write(last); f.close()
169 177 > EOF
170 178 $ hg ci -m'broken manual edit of .hgtags'
171 179 $ cat .hgtags; echo
172 180 acb14030fe0a21b60322c440ad2d20cf7685a376 foobar
173 181 $ hg tag newline
174 182 $ cat .hgtags; echo
175 183 acb14030fe0a21b60322c440ad2d20cf7685a376 foobar
176 184 a0eea09de1eeec777b46f2085260a373b2fbc293 newline
177 185
178 186
179 187 tag and branch using same name
180 188
181 189 $ hg branch tag-and-branch-same-name
182 190 marked working directory as branch tag-and-branch-same-name
183 191 $ hg ci -m"discouraged"
184 192 $ hg tag tag-and-branch-same-name
185 193 warning: tag tag-and-branch-same-name conflicts with existing branch name
186 194
187 195 test custom commit messages
188 196
189 197 $ cat > editor << '__EOF__'
190 198 > #!/bin/sh
191 199 > echo "custom tag message" > "$1"
192 200 > echo "second line" >> "$1"
193 201 > __EOF__
194 202 $ chmod +x editor
195 203 $ HGEDITOR="'`pwd`'"/editor hg tag custom-tag -e
196 204 $ hg log -l1 --template "{desc}\n"
197 205 custom tag message
198 206 second line
199 207
208
200 209 local tag with .hgtags modified
201 210
202 211 $ hg tag hgtags-modified
203 212 $ hg rollback
204 213 rolling back to revision 11 (undo commit)
205 214 $ hg st
206 215 M .hgtags
207 216 ? .hgtags.orig
208 217 ? editor
209 218 $ hg tag --local baz
210 219 $ hg revert --no-backup .hgtags
211 220
221
222 tagging when at named-branch-head that's not a topo-head
223
224 $ hg up default
225 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
226 $ hg merge -t internal:local
227 0 files updated, 1 files merged, 0 files removed, 0 files unresolved
228 (branch merge, don't forget to commit)
229 $ hg ci -m 'merge named branch'
230 $ hg up 11
231 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
232 $ hg tag new-topo-head
233
234
235 tagging on null rev
236
237 $ hg up null
238 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
239 $ hg tag nullrev
240 abort: not at a branch head (use -f to force)
241 [255]
242
243 $ hg init empty
244 $ hg tag -R empty nullrev
245
212 246 $ cd ..
213 247
214 248 tagging on an uncommitted merge (issue2542)
215 249
216 250 $ hg init repo-tag-uncommitted-merge
217 251 $ cd repo-tag-uncommitted-merge
218 252 $ echo c1 > f1
219 253 $ hg ci -Am0
220 254 adding f1
221 255 $ hg branch b1
222 256 marked working directory as branch b1
223 257 $ echo c2 >> f1
224 258 $ hg ci -m1
225 259 $ hg up default
226 260 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
227 261 $ hg merge b1
228 262 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
229 263 (branch merge, don't forget to commit)
230 264
231 265 $ hg tag t1
232 266 abort: uncommitted merge
233 267 [255]
234 268 $ hg status
235 269 M f1
236 270 $ hg tag --rev 1 t2
237 271 abort: uncommitted merge
238 272 [255]
239 273 $ hg tag --rev 1 --local t3
240 274 $ hg tags -v
241 275 tip 1:9466ada9ee90
242 276 t3 1:9466ada9ee90 local
243 277
244 278 $ cd ..
General Comments 0
You need to be logged in to leave comments. Login now