That green line is the diff, and reading it is the habit worth building today. There's nothing mystical to decode: a plus sign, your name, dropped exactly where you asked. If it matches what you wanted, you have evidence. If it doesn't, you caught it before anyone else saw it.
Then do the move that makes branching click. Look at the version of the file on main. Your name is not there. It will not be there until the team says yes. That's a branch doing its job: letting you work in public without changing the shared version before the work is ready.
Once that clicks, practice the uncomfortable part while the stakes are still low: the agent making a small mistake.
When the agent gets it wrong
Practice this part on purpose. Copilot can move fast, but fast is not the same thing as correct. If you ask for something vague, it may give you a confident answer that still misses what you meant. That does not break the exercise. It gives you a chance to stay in control while the mistake is still small.
Say it dropped your name at the top of the list instead of in alphabetical order. Do not reach for a command and do not panic. Tell it what you actually wanted: "That's not where my name goes, put it between the name above and the name below." Watch it move the line. Read the diff again. Now you are checking the work, not just hoping the tool is right.
The habit is smaller and more durable than the command sequence: make the request narrow, know what right should look like, and read the diff before you approve anything. If the line is in the wrong place, you do not need to know a Git command to fix it. You need to be clear about the outcome and willing to check the work.
Before you approve anything, stop and read it one more time. Does the change match what you asked for? If it does, approve it and merge it. Your name is on main now. Delete the branch, because the branch was a workspace for this change, not a souvenir.
Today you approve your own change so you can watch the whole loop end to end. On a real team, someone else reviews it before it merges, and you'll be the reviewer as often as the author. Same habit either way: read the diff before you say yes.
Before we call the exercise finished, replay the loop in order. You got your bearings, agreed that nothing ships unseen, watched one example, made your own contribution, read the diff, merged it, and said the idea back. If you can point to those stops without help, you understand the workflow, not just the instructions.