How to pop out a specific stash from the stash list in Git?
Originally Published Here ๐!
To pop a specific stash in git, you can use the git stash apply command followed by the stash@{NUMBER} command.
# Get or pop out a specific stash in Git
# "n" refers to the number in the list
git stash apply stash@{n}
F...
melvingeorge-me.hashnode.dev1 min read