How To Apply And Delete A Git Stash At The Same Time
Git
24/11/2022
One can apply and delete the latest stash simultaneously with the pop command.
BASH
git stash popIf you wish to pop a specific stash:
BASH
git stash pop stash@{i}Git
24/11/2022
One can apply and delete the latest stash simultaneously with the pop command.
git stash popIf you wish to pop a specific stash:
git stash pop stash@{i}