On this blueprint, which Git operation is named for switching the worktree onto another branch or restoring a file path from a revision?
Select an answer to reveal the explanation.
Short Explanation
checkout is the blueprint’s name for hopping to another branch or bringing a file back from a revision—like changing which folder is open on your desk. It is not how you publish an undo of a commit others already pulled.
Full Explanation
DEVCOR 1.10.d lists git checkout for switching the worktree to another branch or restoring a path from a revision. Newer switch/restore verbs may exist in Git, but the exam topics use checkout. Revert undoes published commits; reset rewrites local pointer/index/worktree state.