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 pop

If you wish to pop a specific stash:

BASH
git stash pop stash@{i}

WRITTEN BY

Code and stuff