Git removes the content of stash

delete stash content, feel the whole world is clean ::

is just a few lines :

git stash list // view the stash list

if you get this result it means that your stash is nothing

this means that there is a queue

then you can execute git stash clear: note that this clears all your content

$ git stash drop stash@{0}  这是删除第一个队列

Read More: