For the complete documentation index, see llms.txt. This page is also available as Markdown.

Commits

The Commits page lists every commit in a project's managed git repository, with a per-commit diff view — useful for tracing exactly what changed between two builds, or reviewing a single commit before deciding whether it needs a new build.

Opening Commits

From a project's Dashboard, click Commits in the footer of the Repository card.

The Commit List

Each row shows:

  • SHA — the commit's short hash, with a copy icon for the full hash.

  • Message — the commit's subject line (hover to see the full message).

  • Author — the commit author's name (hover to see their email).

  • Commit Date — when the commit was made.

  • Actions — opens the commit's detail page.

A branch is preselected for you — main if the repository has it, otherwise the first branch alphabetically — so the list has something to show before you touch a filter.

Use the filter icon (top-right of the table) to narrow the list:

  • Branch — restrict the list to commits on a specific branch.

  • From Tag / To Tag — restrict the list to the commit range between two tags.

The list uses Prev/Next rather than numbered pages or a total count, since a large range's true total isn't always known up front.

Commit Detail

Opening a commit shows its message, full SHA, author, and commit date, followed by a diff of every file it changed.

The diff itself is the same viewer used by the Upgrade Helper — a resizable file tree sidebar (drag its edge to widen it) with lines-added/removed counts, a Split/Unified toggle (opens in Unified), and per-file review actions (copy path, copy anchor link, view raw contents, view full file content in a modal, mark as viewed). All files start expanded, since a commit is usually reviewed as one unit rather than file by file.

Two states get their own explicit treatment rather than looking like an empty or missing diff:

  • Binary files show a notice that the file is binary instead of an empty diff panel.

  • Very large commits — past a size/file-count cap — show a warning banner above the diff, so a capped view never looks like the complete change.

Last updated

Was this helpful?