git stash save --keep-index --include-untracked 'delete'
-- 'delete' can be called anything, it's just a name that you will use later to find the right index of stash in stash list
git stash list
-- find index of stash you created earlier, in this case 'delete'
git stash drop stash@{0}
git reset HEAD
git status