git » {{repo.name}}

{{repo.info.desc}}

% if repo.info.web_url or repo.info.git_url: % if repo.info.web_url: % end % if repo.info.git_url: % end
website {{repo.info.web_url}}
git clone {{! '
'.join(repo.info.git_url.split())}}

% end % if "master" in repo.branch_names():
commits (master)
% kwargs = dict(repo = repo, start_ref = "refs/heads/master", % limit = repo.info.commits_in_summary, % shorten = shorten, repo_root = ".", offset = 0) % include('commit-list.html', **kwargs)
tree (master)
% kwargs = dict(repo = repo, tree=repo.tree("master"), % treeroot="b/master/t", dirname=smstr.from_url("")) % include('tree-list.html', **kwargs)
% end % if "main" in repo.branch_names():
commits (main)
% kwargs = dict(repo = repo, start_ref = "refs/heads/main", % limit = repo.info.commits_in_summary, % shorten = shorten, repo_root = ".", offset = 0) % include('commit-list.html', **kwargs)
tree (main)
% kwargs = dict(repo = repo, tree=repo.tree("main"), % treeroot="b/main/t", dirname=smstr.from_url("")) % include('tree-list.html', **kwargs)
% end
branches
% for b in repo.branch_names(): %end
{{b}}

% tags = list(repo.tags()) % if tags:
tags
% for name, obj_id in tags: %end
{{name}}
% end