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

csinfo: show only branch heads

Changeset 011be34126b3

Parent 12559d605d84

by Yuki KODAMA

Changes to one file · Browse files at 011be34126b3 Showing diff from parent 12559d605d84 Diff from another changeset...

 
98
99
100
101
 
 
 
102
103
104
 
98
99
100
 
101
102
103
104
105
106
@@ -98,7 +98,9 @@
  elif item == 'date':   return hglib.displaytime(ctx.date())   elif item == 'branch': - return hglib.toutf(ctx.branch()) + if ctx.node() in self.repo.branchtags().values(): + return hglib.toutf(ctx.branch()) + return None   elif item == 'tags':   value = hglib.toutf(', '.join(ctx.tags()))   if len(value) == 0: