How to delete a stash created with git stash create?
To delete a normal stash created with git stash , you want git stash drop or git stash drop stash@{n}. See below for more details. You don’t need to delete a stash created with git stash create. From the docs: Create a stash entry (which is a regular commit object) and return its object name, without storing it anywhere in the … Read more