Question: You would like to restore some previously stashed work to a new branch. How can you do that?

  1. Use `git branch `.
  2. Add the stashed commits to the current commit, then create a new branch.
  3. Use `git checkout -b`.
  4. Run `git stash branch `.

Answer: The correct answer of the above question is Option D:Run `git stash branch `.