History

Commits

{commits.length}
{#if !hasRepository}
No repository loaded.
{:else if commits.length === 0}
No commits returned.
{:else}
{#each commits as item, rowIndex (item.hash)} {@const row = graphRows[rowIndex]}
{item.summary} {item.short_hash} - {item.author_name}
{#if item.refs.length > 0}
{#each item.refs as ref} {ref} {/each}
{/if} {#if item.files.length > 0}
{#if expandedCommitHashes.has(item.hash)}
{#each item.files as file (`${item.hash}:${file.old_path ?? ""}:${file.path}`)} {/each}
{/if}
{/if}
{/each}
{/if}