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

merge with Adrian

Changeset 62a8dbcb6a1b

Parents 241a952e484c

Parents fa89cfed5ec8

by Steve Borho

Changes to 2 files · Browse files at 62a8dbcb6a1b Showing diff from parent 241a952e484c fa89cfed5ec8 Diff from another changeset...

 
4
5
6
7
 
 
4
5
6
 
7
@@ -4,4 +4,4 @@
   for /F "tokens=*" %%G in ('dir /b /A:D') do (   echo %%G - hg -R %%G thgstatus) + hg -R %%G thgstatus --notify %%G)
 
98
99
100
101
 
102
103
104
 
106
107
108
109
 
110
111
112
113
 
114
 
98
99
100
 
101
102
103
104
 
106
107
108
 
109
110
111
112
 
113
114
@@ -98,7 +98,7 @@
  from mercurial import demandimport   demandimport.disable()   from thgutil import shlib - shlib.shell_notify([os.getcwd()]) + shlib.shell_notify(opts.get('notify'))   demandimport.enable()   ui.note("thgstatus updated\n")   @@ -106,9 +106,9 @@
  'thgstatus':   (thgstatus,   [ ('', 'delay', None, _('wait until the second ticks over')), - ('n', 'notify', None, _('notify the shell')), + ('n', 'notify', [], _('notify the shell for path(s) given')),   ('', 'remove', None, _('remove the status file')),   ('s', 'show', None, _('just show the contents of '   'the status file (no update)')) ], - _('hg thgstatus')), + _('hg thgstatus [OPTION]...')),  }