how to get list of stash in git code example
Example 1: git list of stashes
git stash list
Example 2: git delete stash
git stash drop stash@{index} // here index will be shown after getting stash list.
git stash list
git stash drop stash@{index} // here index will be shown after getting stash list.