A GitHub Desktop-style diff, staging, history, and commit workflow inside Pi.
Review syntax-highlighted changes, move files between the working tree and index, browse commits, manage branches and stashes, and commit without leaving Pi.
Pi is already where the code changes happen. Reviewing those changes should not require switching to another app or reconstructing the state of the index from terminal commands.
pi-git adds one full-screen /diff view with:
- a file tree and responsive diff viewport;
- separate, index-exact working and staged views;
- syntax highlighting with GitHub Desktop-style intraline changes;
- commit history, branch, stash, and worktree pickers;
- guarded Git commands and recoverable async operations.
Normal Git operations stay local. The model is only involved when you explicitly ask Pi to generate a commit message.
pi install git:github.com/NikolaiUgelvik/pi-gitRestart Pi after installation.
Open the viewer from any directory inside a Git repository:
/diff
Or use the global shortcut:
| Platform | Shortcut |
|---|---|
| macOS | Cmd + Shift + G |
| Linux / Windows | Ctrl + Shift + G |
The viewer opens on working-tree changes. Press ? or F1 at any time for context-sensitive help.
| Key | What it does |
|---|---|
| Tab | Switch between the file tree and diff |
| ↑/↓ or j/k | Move through files or scroll the diff |
| n/p | Select the next or previous file |
| v | Toggle working and staged views |
| Enter | Stage the selected working file or unstage the selected staged file |
| Shift+Enter | Stage all remaining changes or unstage everything |
| C | Review staged changes; press again to open the commit dialog |
| c | Browse the working tree and recent commits |
| Ctrl+P | Open the Git command menu |
| r | Reload the active diff or retry a failed refresh |
| ? / F1 | Open context-sensitive help |
| q / Esc | Close the viewer or active overlay |
The diff viewport also supports half-page scrolling, fixed line-number gutters, horizontal scrolling with the arrow keys, and larger horizontal jumps with Shift+←/→.
The working and staged views come directly from Git. pi-git does not approximate one from the other, so partially staged and mixed files remain accurate.
A typical commit flow:
- Select a file and press Enter to stage its remaining changes.
- Press v to inspect the exact staged diff.
- Press C to enter staged review, then C again to compose the commit.
- Type a message, or press Ctrl+G to generate one from the staged diff.
- Press Enter to commit.
Inside the commit dialog, Ctrl+X toggles amend mode. Normal commits are blocked when the index is empty; amend remains available when the repository has an existing HEAD.
Press c to search recent commits by hash or message. Select a commit to inspect its diff, then press W to return directly to the working tree.
| Key | Tool |
|---|---|
| b | Search and switch branches; Ctrl+N creates one |
| w | Search and switch worktrees |
| s | Create, apply, pop, or drop stashes |
| D | Review and confirm discarding the selected working-tree file |
| I | Initialize Git when the current directory is not a repository |
Press Ctrl+P to search and run common commands:
- fetch, fetch with prune, or fetch all remotes;
- pull, fast-forward-only pull, or pull with rebase;
- push, push tags, or force-push with lease;
- initialize and update submodules.
Force-push always performs a porcelain dry run, shows the resolved destination and ref updates, and requires a second confirmation before execution.
- Syntax highlighting is resolved from each file path, including renamed files.
- Added and deleted blocks use subtle theme backgrounds while intraline changes use a stronger shade.
- Intraline highlighting follows GitHub Desktop's behavior: equal-sized change blocks are paired by position, then the common prefix and suffix are removed to reveal one changed range.
- Tabs, combining characters, CJK text, emoji, and wide graphemes remain safe during horizontal slicing.
- Unsupported, binary, malformed, and oversized inputs fall back to a bounded plain presentation.
- Narrow terminals switch to a single focused panel instead of squeezing both panes together.
Git state can change while a command is running, so the viewer treats every load and mutation as an explicit operation:
- destructive actions require confirmation;
- Escape cancels active observation and triggers reconciliation when a mutation may already have taken effect;
- failed post-mutation refreshes retry the refresh only—the Git mutation is never run twice;
- stale async results cannot overwrite a newer repository, worktree, or document;
- large files and diffs stay visible as
(omitted)entries with the measured limit and reason instead of being truncated mid-hunk; - Git commands use bounded local, mutation, and network timeouts.
/diffcaptures one strict porcelain-v2 repository snapshot.- Staged and working patches are loaded as separate bounded slices.
- Parsed files become immutable presentation rows with syntax and intraline styling.
- Tree, presentation, and filtered-list caches keep navigation and scrolling responsive.
- A single operation coordinator serializes loads, mutations, cancellation, reconciliation, and refresh-only recovery.
See docs/architecture.md for the full state model, Git boundaries, rendering pipeline, and testing strategy.
Run the extension directly from source:
npm install
npm run devUseful development commands:
# Persistent type checking
npm run typecheck:watch
# One test file or the full suite in watch mode
npm run test:file -- tests/diff-intraline.test.ts
npm run test:watch
# Full repository checks
npm test
npm run check
# Rebuild and independently verify committed production output
npm run build
npm run verify:buildGit installs use the committed dist/ tree. npm run verify:build performs an isolated clean rebuild and byte-compares all production files so stale or mixed output fails before release.
Performance fixtures are available through benchmark:git, benchmark:render, benchmark:load, and benchmark:loop.
- Staging operates on the selected file's remaining changes or the full active slice; interactive hunk/line staging is not currently exposed.
- Historical diffs are read-only. Return to the working tree before running mutations.
- Very large inputs are intentionally represented as explicit omissions rather than partially rendered patches.
