删除存储有两种方法:
$ git stash drop <stash_id>
。 $ git stash clear
: $ git stash clear
。 谨慎使用它们,可能很难恢复曾经删除过的藏匿处。
这是参考文章 。
使用此命令可以查看所有隐藏的更改。
git stash list
以下命令使用它来清除所有隐藏的更改
git stash clear
现在,如果要从隐藏区域删除其中一个隐藏的更改
git stash drop stash@{index} // here index will be shown after getting stash list.
注意:
git stash list
使您可以从 git 的 stash 区域获取索引。