Complete the command to show the current branch where HEAD is pointing.
git [1]The git branch command lists branches and highlights the current branch where HEAD points.
Complete the command to move HEAD to a specific commit hash.
git checkout [1]The git checkout command with a commit hash moves HEAD to that commit in detached mode.
Fix the error in the command to reset HEAD to the previous commit.
git reset [1] HEAD~1
The --soft option moves HEAD to the previous commit but keeps changes staged.
Fill both blanks to create a new branch and move HEAD to it.
git [1] -b [2]
The command git checkout -b new-feature creates and switches HEAD to the new branch.
Fill all three blanks to show the commit where HEAD currently points.
git [1] -[2] 1 [3]
The command git log -n 1 HEAD shows the latest commit where HEAD points.
