##// END OF EJS Templates
tags: describe all abnormal tag types in `hg tags -v`...
Dan Villiom Podlaski Christiansen -
r46798:dc4564ee default
parent child Browse files
Show More
@@ -7316,10 +7316,11 b' def tags(ui, repo, **opts):'
7316 for t, n in reversed(repo.tagslist()):
7316 for t, n in reversed(repo.tagslist()):
7317 hn = hexfunc(n)
7317 hn = hexfunc(n)
7318 label = b'tags.normal'
7318 label = b'tags.normal'
7319 tagtype = b''
7319 tagtype = repo.tagtype(t)
7320 if repo.tagtype(t) == b'local':
7320 if not tagtype or tagtype == b'global':
7321 label = b'tags.local'
7321 tagtype = b''
7322 tagtype = b'local'
7322 else:
7323 label = b'tags.' + tagtype
7323
7324
7324 fm.startitem()
7325 fm.startitem()
7325 fm.context(repo=repo)
7326 fm.context(repo=repo)
General Comments 0
You need to be logged in to leave comments. Login now