##// END OF EJS Templates
histedit: rename `tip` to `topmost`...
Pierre-Yves David -
r17665:b6553395 default
parent child Browse files
Show More
@@ -417,8 +417,8 def histedit(ui, repo, *parent, **opts):
417 417 if opts.get('continue', False):
418 418 if len(parent) != 0:
419 419 raise util.Abort(_('no arguments allowed with --continue'))
420 (parentctxnode, created, replaced,
421 tmpnodes, existing, rules, keep, tip, replacemap) = readstate(repo)
420 (parentctxnode, created, replaced, tmpnodes,
421 existing, rules, keep, topmost, replacemap) = readstate(repo)
422 422 currentparent, wantnull = repo.dirstate.parents()
423 423 parentctx = repo[parentctxnode]
424 424 # existing is the list of revisions initially considered by
@@ -479,9 +479,9 def histedit(ui, repo, *parent, **opts):
479 479 if len(parent) != 0:
480 480 raise util.Abort(_('no arguments allowed with --abort'))
481 481 (parentctxnode, created, replaced, tmpnodes,
482 existing, rules, keep, tip, replacemap) = readstate(repo)
483 ui.debug('restore wc to old tip %s\n' % node.hex(tip))
484 hg.clean(repo, tip)
482 existing, rules, keep, topmost, replacemap) = readstate(repo)
483 ui.debug('restore wc to old parent %s\n' % node.short(topmost))
484 hg.clean(repo, topmost)
485 485 cleanupnode(ui, repo, 'created', created)
486 486 cleanupnode(ui, repo, 'temp', tmpnodes)
487 487 os.unlink(os.path.join(repo.path, 'histedit-state'))
@@ -492,7 +492,7 def histedit(ui, repo, *parent, **opts):
492 492 raise util.Abort(_('history edit already in progress, try '
493 493 '--continue or --abort'))
494 494
495 tip, empty = repo.dirstate.parents()
495 topmost, empty = repo.dirstate.parents()
496 496
497 497
498 498 if len(parent) != 1:
@@ -500,7 +500,7 def histedit(ui, repo, *parent, **opts):
500 500 parent = scmutil.revsingle(repo, parent[0]).node()
501 501
502 502 keep = opts.get('keep', False)
503 revs = between(repo, parent, tip, keep)
503 revs = between(repo, parent, topmost, keep)
504 504
505 505 ctxs = [repo[r] for r in revs]
506 506 existing = [r.node() for r in ctxs]
@@ -508,7 +508,7 def histedit(ui, repo, *parent, **opts):
508 508 if not rules:
509 509 rules = '\n'.join([makedesc(c) for c in ctxs])
510 510 rules += '\n\n'
511 rules += editcomment % (node.short(parent), node.short(tip))
511 rules += editcomment % (node.short(parent), node.short(topmost))
512 512 rules = ui.edit(rules, ui.username())
513 513 # Save edit rules in .hg/histedit-last-edit.txt in case
514 514 # the user needs to ask for help after something
@@ -534,7 +534,7 def histedit(ui, repo, *parent, **opts):
534 534
535 535 while rules:
536 536 writestate(repo, parentctx.node(), created, replaced,
537 tmpnodes, existing, rules, keep, tip, replacemap)
537 tmpnodes, existing, rules, keep, topmost, replacemap)
538 538 action, ha = rules.pop(0)
539 539 ui.debug('histedit: processing %s %s\n' % (action, ha))
540 540 (parentctx, created_, replaced_, tmpnodes_) = actiontable[action](
@@ -622,16 +622,16 def between(repo, old, new, keep):
622 622
623 623
624 624 def writestate(repo, parentctxnode, created, replaced,
625 tmpnodes, existing, rules, keep, oldtip, replacemap):
625 tmpnodes, existing, rules, keep, topmost, replacemap):
626 626 fp = open(os.path.join(repo.path, 'histedit-state'), 'w')
627 627 pickle.dump((parentctxnode, created, replaced,
628 tmpnodes, existing, rules, keep, oldtip, replacemap),
628 tmpnodes, existing, rules, keep, topmost, replacemap),
629 629 fp)
630 630 fp.close()
631 631
632 632 def readstate(repo):
633 633 """Returns a tuple of (parentnode, created, replaced, tmp, existing, rules,
634 keep, oldtip, replacemap ).
634 keep, topmost, replacemap ).
635 635 """
636 636 fp = open(os.path.join(repo.path, 'histedit-state'))
637 637 return pickle.load(fp)
General Comments 0
You need to be logged in to leave comments. Login now