Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

hgtk: add command 'strip' to launch strip dialog

Changeset fd8f16c3ecd8

Parent fd28d437db57

by Yuki KODAMA

Changes to one file · Browse files at fd8f16c3ecd8 Showing diff from parent fd28d437db57 Diff from another changeset...

 
393
394
395
 
 
 
 
 
396
397
398
 
691
692
693
 
694
 
393
394
395
396
397
398
399
400
401
402
403
 
696
697
698
699
700
@@ -393,6 +393,11 @@
  from tortoisehg.hgtk.status import run   gtkrun(run, ui, *pats, **opts)   +def strip(ui, *pats, **opts): + """strip changesets""" + from tortoisehg.hgtk.thgstrip import run + gtkrun(run, ui, *pats, **opts) +  def synch(ui, *pats, **opts):   """repository synchronization tool"""   from tortoisehg.hgtk.synch import run @@ -691,4 +696,5 @@
  "^archive": (archive,   [('r', 'rev', '', _('revision to update'))],   ('hgtk archive')), + "^strip": (strip, [], ('hgtk strip [REV]')),  }