View staged vs unstaged changes

View staged vs unstaged changes in Git — with the four heights of help laid out: do it now, make it easier for the next person to accept, work out the right move when you are stuck, and learn the pattern so it stops coming back.

4prompt heights
Open it in the interactive atlas →

The four heights

The same task, four distances: today's deadline, the next reviewer, the stuck moment, the pattern.

Execute — do the immediate task

+
I must show Aisha and the lead how staged changes differ from my working edits before I push.…
I must show Aisha and the lead how staged changes differ from my working edits before I push. Produce a concise note and a command list they can run: show which files are staged, which are modified but unstaged, and for two example files present side-by-side hunks of staged versus unstaged content so they can see what will be committed versus what won’t.

Improve — make it easier to accept

+
Before I create the commit for review, make it easy for the reviewer to accept only the staged…
Before I create the commit for review, make it easy for the reviewer to accept only the staged work: surface the intent of the staged changes at the top, identify any unstaged edits that would confuse the reviewer, and suggest how to split remaining edits into a follow-up commit. Recommend exact commit message wording and what to call the follow-up change.

Decide — diagnose the stuck moment

+
I pushed a commit that I thought included my fix, but the build server failed and the logs show the…

I thought everything was staged but the build server failed after my push

I pushed a commit that I thought included my fix, but the build server failed and the logs show the fix is missing. I don’t know whether I forgot to stage or I committed the wrong files. Explain how to quickly check my last push against my local staged and unstaged state, the commands to recover if I committed empty or wrong content, and the single-sentence status I should send to the team while I fix it.

Become — change the pattern

+
Over the past month I’ve pushed three PRs that were missing intended edits because I mixed staging…

I repeatedly confuse staged and unstaged work and push incomplete fixes

Over the past month I’ve pushed three PRs that were missing intended edits because I mixed staging with WIP. Recommend a simple routine and two short commands I should run before every commit to avoid this, plus a naming convention for WIP edits so reviewers aren’t surprised. Keep it lightweight for a small fast-moving team.

Next to this one

Other version control work people do in Git.

Every task here came from the work, not from a feature list — which is why the prompts name what you want done and never the button that does it. The tool changes; the work does not.
Copyright © LLOS.ai · 2026 — original pedagogy, voice, and design — all rights reserved.

The rest of the map

Same library, five ways in.