Git - Stashing
Given this sequence:
What is the state of the stash list after these commands?
git stash save "fix bug" git stash pop
What is the state of the stash list after these commands?
git stash save "fix bug" git stash pop
git stash save "fix bug" creates a stash entry named "fix bug".git stash pop applies the latest stash and removes it from the stash list.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions