Last Updated: February 25, 2016
·
1.161K
· heitortsergent

git stash pop

After you stashed some work with:

git stash

And you want to bring it back with git:

git stash pop
# which equals
git stash apply && git stash drop

Don't forget that if there's a conflict, the drop command won't be executed and you have to do it manually afterwards.