Question - What does the git reset --mixed and git merge --abort commands do?
Answer -
git reset --mixed is used to undo changes made in the working directory and staging area.
git merge --abort helps stop the merge process and return back to the state before the merging began.