git stash after commit code example
Example 1: git stas hauntracked files
git stash --include-untracked
Example 2: git delete stash
git stash drop stash@{index} // here index will be shown after getting stash list.
git stash --include-untracked
git stash drop stash@{index} // here index will be shown after getting stash list.