##// END OF EJS Templates
Report branch for hg id
Matt Mackall -
r3415:9a649177 default
parent child Browse files
Show More
@@ -1577,6 +1577,11 b' def identify(ui, repo):'
1577 (modified or added or removed or deleted) and "+" or "")]
1577 (modified or added or removed or deleted) and "+" or "")]
1578
1578
1579 if not ui.quiet:
1579 if not ui.quiet:
1580
1581 branch = repo.workingctx().branch()
1582 if branch:
1583 output.append("(%s)" % branch)
1584
1580 # multiple tags for a single parent separated by '/'
1585 # multiple tags for a single parent separated by '/'
1581 parenttags = ['/'.join(tags)
1586 parenttags = ['/'.join(tags)
1582 for tags in map(repo.nodetags, parents) if tags]
1587 for tags in map(repo.nodetags, parents) if tags]
General Comments 0
You need to be logged in to leave comments. Login now