Question: You would like to restore some previously stashed work to a new branch. How can you do that?
- Use `git branch
`. - Add the stashed commits to the current commit, then create a new branch.
- Use `git checkout -b`.
- Run `git stash branch
`.
Answer: The correct answer of the above question is Option D:Run `git stash branch