Published
- 1 min read
git remove specific stash
The solution for this is noted below
git remove specific stash
Solution
git stash drop # drop top hash, stash@{0}
git stash drop stash@{n} # drop specific stash - see git stash list
Try other methods by searching on the site. That is if this doesn’t work