git
»
{{repo.name}}
{{repo.info.desc}}
% if repo.info.web_url or repo.info.git_url:
% if repo.info.web_url:
website
{{repo.info.web_url}}
% end % if repo.info.git_url:
git clone
{{! '
'.join(repo.info.git_url.split())}}
% end
% end % if repo.main_branch():
commits ({{repo.main_branch()}})
% kwargs = dict(repo = repo, % start_ref = "refs/heads/" + repo.main_branch(), % limit = repo.info.commits_in_summary, % shorten = shorten, repo_root = ".", offset = 0) % include commit-list **kwargs
tree ({{repo.main_branch()}})
% kwargs = dict(repo = repo, tree=repo.tree(repo.main_branch()), % treeroot="b/" + repo.main_branch() + "/t", % dirname=smstr.from_url("")) % include tree-list **kwargs
% end
branches
% for b in repo.branch_names():
{{b}}
commits
tree
%end
% tags = list(repo.tags()) % if tags:
tags
% for name, obj_id in tags:
{{name}}
%end
% end