EG。我有很多东西,但有一个名字"我的特殊藏品"我想保留。
像git stash clear !"my special stash"
之类的东西会很好,谢谢你的帮助。
答案 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