Using GitManager
GitManager scans the folders you configure and shows every Git repository it finds, with each repo's current branch, whether it has uncommitted changes, and how far ahead or behind its upstream it is.
Getting started
- Copy
.env.exampleto.env. - Set
GIT_REPO_ROOTSto the folders that hold your repos. - Run
docker compose upand open the dashboard.
Reading the dashboard
- Branch — the checked-out branch (or
HEADwhen detached). - Dirty — the working tree has staged or unstaged changes.
- Ahead / behind — commits your branch leads or trails its upstream by.
Repository details
Click any repository in the list to open its details on the right: its full path and current branch, its remotes and their URLs, every local branch (with the one you're on marked and its upstream shown), and the 20 most recent commits.
Active project & activity
Clicking a repository also makes it your active project — the one you're currently focused on — shown in the activity panel at the bottom. That panel also lists recent actions by both you and Claude, updating live. When GitManager is connected to Claude, Claude can see your active project and this activity, so you stay on the same page.
Background refresh
The dashboard refreshes on its own. By default it does not reach
the network — enable SCAN_FETCH_ENABLED if you want
ahead/behind counts kept current via git fetch.