Show More
@@ -219,6 +219,15 b' def reposetup(ui, repo):' | |||
|
219 | 219 | write(repo, marks) |
|
220 | 220 | return result |
|
221 | 221 | |
|
222 | def tags(self): | |
|
223 | """Merge bookmarks with normal tags""" | |
|
224 | if self.tagscache: | |
|
225 | return self.tagscache | |
|
226 | ||
|
227 | tagscache = super(bookmark_repo, self).tags() | |
|
228 | tagscache.update(parse(repo)) | |
|
229 | return tagscache | |
|
230 | ||
|
222 | 231 | repo.__class__ = bookmark_repo |
|
223 | 232 | |
|
224 | 233 | def pushnonbookmarked(orig, ui, repo, *args, **opts): |
General Comments 0
You need to be logged in to leave comments.
Login now