Search

Search the site

All blocks
Devtools

Git Timeline

Commit and release timeline with branches, tags, authors, CI status, and collapsible diff snippets.

Install with shadcn CLI
Adds the block files into your project. Run from an app that already has shadcn initialized.
bash
npx shadcn@latest add @tt-ui/git-timeline
Preview
Live demo of this block in the browser.

Git Timeline

Commit and release timeline with branches, tags, authors, and collapsible diff snippets.

Repository activity

Recent commits, merges, and releases on main.

  1. a3f9c2dmainSuccess

    Alex Chen

  2. b7e1a04feat/webhook-retrySuccess

    Jordan Rivera

    +const MAX_RETRIES = 5;
    +const BASE_DELAY_MS = 1000;
    export async function deliverWebhook(payload: Payload) {
    - await fetch(payload.url, { method: "POST" });
    + return retryWithBackoff(() => post(payload), MAX_RETRIES, BASE_DELAY_MS);
    }
  3. v2.4.1Success

    Morgan Shaw

  4. c4d8f91fix/sync-raceWarning

    Taylor Park

    @@ -42,6 +42,8 @@ async function syncSubscription(id: string) {
    const lock = await acquireLock(id);
    + if (!lock) return;
    try {
    await pullRemoteState(id);
    } finally {
    await releaseLock(id);
    }
  5. v2.4.0

    Riley Kim

  6. d9a2b17mainDeploying

    Alex Chen

Git Timeline