Guide contents

Getting Started

Strand is a fast, keyboard-first Git client for macOS, Windows, and Linux, built for reviewing what AI coding agents do to your code — and for everyday Git work. This page covers installing Strand, opening your first repository, and finding your way around the main window.

A note on Mod#

Throughout this guide, Mod means ⌘ on macOS and Ctrl on Windows and Linux. So Mod+K is ⌘K on a Mac and Ctrl+K everywhere else. Every global shortcut shown here is rebindable in Settings → Keyboard.

Install#

Download the latest release from GitHub Releases. Installers range from roughly 15 MB (Windows MSI, Linux .deb/.rpm) to about 31 MB (macOS universal DMG); the Linux AppImage is larger, at around 90 MB.

Platform Artifact Notes
macOS .dmg Universal binary (Apple Silicon + Intel), Developer ID–signed and notarized
Windows .msi Windows 11; the installer is not yet code-signed
Linux .deb, .rpm, .AppImage Built on Ubuntu 22.04; AppImage includes a keyless Sigstore verification bundle

You can also build from source with Rust stable, Node.js 20+, pnpm 9+, and the Tauri 2 platform dependencies.

Strand is open source (AGPL-3.0) and free for individuals. Companies can buy a one-time commercial license as an alternative to the AGPL; nothing in the app checks or enforces it — the same build works for everyone, with no license keys or feature gating.

First launch#

Strand is a local-first desktop app: there are no accounts to create and no product telemetry. Crash details stay in a local log; the optional report flow only opens a pre-filled GitHub issue for you to review and submit. On first launch you land in an empty window with an open-repository prompt; once you have opened repositories, the same empty state lists your recent ones.

Strand talks to your repositories directly. Network operations (fetch, pull, push, clone) shell out to your system git, so your existing SSH keys, credential helpers, commit signing, and hooks just work — no separate credential setup.

Opening a repository#

There are several ways to get a repository open:

To clone, use the Clone dialog (topbar + menu, palette, or the native File menu): paste a URL, pick a destination, and Strand shows streamed clone progress and opens the result when done. Where the pickers start is configurable via Settings → Git → "Default clone & open folder".

To start locally, choose Initialize repository… from the + menu or palette. Pick or type the folder, choose the initial branch, optionally enter .gitignore patterns, and decide whether Strand should create the first commit. Strand never overwrites an existing .gitignore.

Open repositories become tabs that are restored the next time you launch Strand. Cycle between them with Mod+Tab and Mod+Shift+Tab. For grouping several repositories into one working set, see Repositories and workspaces.

A quick tour of the main window#

Topbar#

The topbar carries the current view's title and the repository-level controls:

Strand also refreshes automatically: on window focus and via a file watcher that live-updates the active tab while files change on disk — useful when an agent is editing underneath you.

Repository rail or tabs#

Open repositories appear either as a vertical icon rail or a horizontal tab strip — choose under Settings → Appearance → "Open repositories". Linked worktrees group with their parent repository and carry a worktree icon.

The sidebar has five primary rows — Work, Local Changes (with an unstaged-count badge), Review, Pull Requests, and All Commits — and two tabs below them. Entering Work selects Files immediately.

Main views#

Switch views with Mod+1 through Mod+7:

Shortcut View What it's for
Mod+1 Work Lightweight file editing, inspection, and embedded terminals — see Work
Mod+2 Local Changes Staging, diffs, and committing — see Everyday Git
Mod+3 All Commits The commit graph and history — see Commits and history
Mod+4 Reflog HEAD reflog browser, the recovery path after resets and rebases
Mod+5 Review Reviewing changes as whole files with a queue and baselines — see Reviewing agent changes
Mod+6 Worktrees Dashboard for parallel worktrees and agent attempts — see Worktrees
Mod+7 Workspace Review Aggregated review across every repository in the active workspace

Pull Requests currently has no dedicated number shortcut; open it from the sidebar or the palette action "Show: Pull Requests". See Pull Requests.

Status bar#

The bottom status bar shows the current branch with ahead/behind counts and a derived sync state — up to date, ahead, behind, diverged, or conflicts needing resolution — on the left. Modified/staged counts and the Settings gear are on the right.

Command palette#

Mod+K opens the command palette from anywhere — a fuzzy-searchable list of actions, branches, tags, stashes, files, commits, workspaces, and recent repositories. Nearly everything in Strand is reachable from it. See Keyboard and palette for the full reference.

In-app updates#

Direct Strand installations check for updates on launch by default and manage them under Settings → Updates: check for updates, download and install, and restart to apply. Automatic download-and-install is off by default, and updates always apply on the next restart — Strand never restarts itself. Update packages are cryptographically signed.

The in-app updater covers the macOS app, direct Windows MSI installs, and the Linux AppImage. Microsoft Store MSIX installs check Store availability on launch, notify you when an update exists, and open the Strand Store page for installation. Linux .deb and .rpm installs update through their package manager.

Settings#

Open Settings with Mod+,, the status-bar gear, or the palette. The dialog has nine sections — Appearance, Diff, Keyboard, Git, Hosting, Integrations, AI, Updates, and Privacy. Most changes apply live; global Git identity and Azure DevOps Server profiles use explicit save actions. See Settings for the full walkthrough.

Where to go next#