📌  相关文章
📜  删除特定的存储 - 无论代码示例

📅  最后修改于: 2022-03-11 14:58:58.532000             🧑  作者: Mango

代码示例1
git stash drop            # drop top hash, stash@{0}
git stash drop stash@{n}  # drop specific stash - see git stash list

#git stash drop takes no parameter - which drops the top stash - or 
#a stash reference which looks like: stash@{n} which n nominates 
#which stash to drop. You can't pass a commit id to git stash drop