Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.2, 1.9.3, and 2.0

revset: the bookmarks extension provides a revision set symbol

Changeset 3d455aaabe18

Parent 04da935d01fe

by Steve Borho

Changes to one file · Browse files at 3d455aaabe18 Showing diff from parent 04da935d01fe Diff from another changeset...

 
124
125
126
127
 
128
129
130
 
 
 
 
131
132
133
 
124
125
126
 
127
128
129
130
131
132
133
134
135
136
137
@@ -124,10 +124,14 @@
    if 'hgsubversion' in repo.extensions():   global _logical, _ancestry - _logical = list(_logical) + [('fromsvn()', + _logical = list(_logical) + [('fromsvn()',   _('all revisions converted from subversion')),]   _ancestry = list(_ancestry) + [('svnrev(rev)',   _('changeset which represents converted svn revision')),] + if 'bookmarks' in repo.extensions(): + global _common + _common = list(_common) + [('bookmark([name])', + _('The named bookmark or all bookmarks.')),]     self.stbar = cmdui.ThgStatusBar(self)   self.stbar.setSizeGripEnabled(False)