Reputation: 492
The difference between git stash pop
and git stash drop
?
Both are removing the stash then what's more?
Upvotes: 2
Views: 2951
Reputation: 10366
git stash pop
removes the top stashed state and apply it on top of the current working tree. On the other hand, git stash drop
just removes that state, not applying it.
Upvotes: 8