Git如何删除不包含特定名称的所有藏匿处

时间:2017-05-25 13:22:55

标签: git atlassian-sourcetree

EG。我有很多东西,但有一个名字"我的特殊藏品"我想保留。

git stash clear !"my special stash"之类的东西会很好,谢谢你的帮助。

1 个答案:

答案 0 :(得分:1)

找出您想要保留的最喜欢的藏匿引用,例如stash@{3}

#create a tag for the favorite stash ref
git tag mystash stash@{3}
#clear all stash refs
git stash clear
#reproduce the favorite stash 
git reset mystash
git stash
#clear the tag
git tag -d mystash