No repository called @Repository.
branches @refs.Branches.Count
@if (refs.Branches.Count == 0) {No branches.
} else {| name | commit | subject | author | age |
|---|---|---|---|---|
| @branch.Name | @Shorten(branch.Sha) | @branch.Tip?.Summary | @branch.Tip?.Author.Name | @Age(branch.Tip?.Committer.When) |
tags @refs.Tags.Count
@if (refs.Tags.Count == 0) {No tags.
} else {| name | commit | message | age |
|---|---|---|---|
| @tag.Name | @if (tag.Tip is { } tip) { @Shorten(tip.Sha) } | @* An annotated tag's own message, falling back to the subject of what it points at — which is all a lightweight tag has. *@@(First(tag.Message) ?? tag.Tip?.Summary) | @Age(tag.Tip?.Committer.When) |