Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0.1, 1.0.2, and 1.0.3

stable status: don't show clean files by default if directory path is specified

Current implementation was introduced at 889dbb205687, which seems
to intend to show the specified files even if they're clean at all.

But it's messy for directories, e.g. `hgtk status subdir'.

Changeset 4d32757291ba

Parent 8d4561bb691c

by Yuya Nishihara

Changes to one file · Browse files at 4d32757291ba Showing diff from parent 8d4561bb691c Diff from another changeset...

 
1736
1737
1738
1739
 
1740
1741
1742
 
1736
1737
1738
 
1739
1740
1741
1742
@@ -1736,7 +1736,7 @@
  return False    def run(ui, *pats, **opts): - showclean = pats and True or False + showclean = util.any(os.path.isfile(e) for e in pats)   rev = opts.get('rev', [])   cmdoptions = {   'all':False, 'clean':showclean, 'ignored':False, 'modified':True,