GitFlow Studio

A native cross-platform Git client built with Tauri 2 and Rust - commit-graph DAG, interactive rebase, three-pane conflict resolution, and an AI assistant with tool access to the repo.

I use git rebase -i and three-way conflict resolution constantly, and I’ve never loved doing either from a terminal diff or a bloated Electron client. I wanted a Git client that felt fast and native, went past the basic “stage and commit” UI most GUIs stop at, and could talk to GitHub without reimplementing its API. So I built one on Tauri 2, with Rust doing the actual git work.

Beyond stage-and-commit

The core is a commit-graph DAG view with topological and time sort and infinite scroll, hunk- and line-level staging, and blame/file-history computed directly against the git object model rather than shelled out per line. Past that baseline, it does the things that usually push people back to the terminal: interactive rebase (reorder, fixup, drop), cherry-pick with real conflict detection and a continue/abort flow, and stash push/apply/pop/drop including untracked files.

Conflict resolution gets one shared three-pane editor - ours, theirs, result - reused across merge, rebase, and cherry-pick instead of three different half-built resolvers.

GitHub without reimplementing GitHub

Rather than build a GitHub API client from scratch, PR and issue support goes through the gh CLI: list, view, create, checkout, and merge PRs, plus branch badges showing open PR status at a glance. It’s less code, and it inherits gh’s own auth instead of needing a separate OAuth flow.

An AI assistant with actual tool access

There’s an in-panel assistant (OpenAI-compatible API) with full tool access to the open repository - it can inspect history, diffs, and branches to answer questions or suggest a rebase plan. Anything destructive - discard, force-delete, push, merge - requires an explicit hold-to-approve gesture before it executes, so the assistant can reason freely without being able to silently blow away work.

Shipping it for real

Release builds are signed and auto-updating for macOS (Apple Silicon + Intel), Windows, and Linux (AppImage + .deb) via a Tauri 2 + GitHub Actions pipeline. The Rust test suite spins up real temporary git repositories rather than mocking git behavior, and runs them safely in parallel.

Key decisions

Built with