Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

hgtk: support for add command

Changeset 559befa12df5

Parent 10bca3c281b3

by Steve Borho

Changes to one file · Browse files at 559befa12df5 Showing diff from parent 10bca3c281b3 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​hgtk.py Stacked
 
179
180
181
 
 
 
 
 
182
183
184
 
488
489
490
 
491
492
493
 
179
180
181
182
183
184
185
186
187
188
189
 
493
494
495
496
497
498
499
@@ -179,6 +179,11 @@
  from hggtk.about import run   run(**opts)   +def add(ui, *pats, **opts): + """add files""" + from mercurial import dispatch + dispatch.dispatch(['add'] + list(pats)) +  def clone(ui, source=None, dest=None, **opts):   """clone tool"""   from hggtk.clone import run @@ -488,6 +493,7 @@
   table = {   "^about": (about, [], _('hgtk about')), + "^add": (add, [], _('hgtk add [FILE]...')),   "^clone": (clone, [], _('hgtk clone SOURCE [DEST]')),   "^commit|ci": (commit, [], _('hgtk commit [FILE]...')),   "^datamine|annotate|blame": (datamine, [], _('hgtk datamine')),