Simple Mode

Git in plain language — with the real terms always in view

Simple Mode never hides Git. Every action shows its plain-language label prominently, the real Git term beneath it, and a one-line explanation. Your team learns the vocabulary while getting work done.

The terminology map

This is the exact mapping the product uses — rendered from the same configuration file that drives the interface.

Simple Mode terms mapped to their Git equivalents, with explanations
Plain languageGit termWhat it means
Save changesCommitA commit is a saved snapshot of your project at a point in time. You can always come back to it.
Create a separate versionBranchA branch is a parallel copy of the project where you can work without affecting the main version.
Request a reviewPull requestA pull request asks teammates to review your changes before they join the main version.
Combine versionsMergeMerging brings the changes from one version into another.
Download projectCloneCloning downloads a full copy of the project to your computer, still connected to the shared one.
Project historyCommit historyEvery saved change, who made it, and when — nothing is ever lost.
Upload your changesPushPushing sends the changes saved on your computer up to the shared project.
What changedDiffA side-by-side comparison showing exactly which lines were added or removed.
Undo to an earlier pointRevertCreates a new saved change that restores the project to how it was before.
ProjectRepositoryA repository holds your project's files and their entire history.
Overlapping editsMerge conflictTwo versions changed the same lines. Someone needs to choose which edits to keep — we'll walk you through it.

11 terms, rendered directly from the shared terminology configuration.

How it behaves in practice

Progressive learning

Every plain-language label carries the real Git term and a tooltip explanation. People absorb the vocabulary from doing the work — no course, no rebase etiquette lecture.

One-click rollback

“Undo to an earlier point” creates a new saved change (a revert) that restores the project — history is never rewritten and nothing is ever lost.

Plain-language merge conflicts

A conflict is presented as “overlapping edits”: two versions changed the same lines, and the interface walks you through choosing which edits to keep.

Developer Mode is always one toggle away

Interface mode is a per-user preference, not a workspace setting. Your developer sees a conventional Git host; your cofounder sees plain language. Both operate on the same repositories through the same server-side rules — branch protection, permissions, and history are identical in both modes.