Comments
Patch
@@ -543,8 +543,20 @@ def bookmarks(web, req, tmpl):
latestentry=lambda **x: entries(latestonly=True, **x))
@webcommand('branches')
def branches(web, req, tmpl):
+ """
+ /branches
+ ---------
+
+ Show information about branches.
+
+ All known branches are contained in the output, even closed branches.
+
+ No arguments are accepted.
+
+ The ``branches`` template is rendered.
+ """
tips = []
heads = web.repo.heads()
parity = paritygen(web.stripecount)
sortkey = lambda item: (not item[1], item[0].rev())