查看現(xiàn)有stash? :? ? ? ? ? ? ? ? git stash list??
移除stash? :? ? ? ? ? ? ? ? ? ? ? ?git stash drop stash@{0}??
查看指定stash的diff :? ? ? ? git stash show命令,后面跟stash名字
查看最近移除的文件? :? ? ? git ?fsck --lost -found
恢復(fù)刪除的stash? :? ? ? ? ? ? git stash apply commit-id
應(yīng)用儲(chǔ)藏文件:? ? ? ? ? ? ? ? ? ?git stash apply
應(yīng)用更早的儲(chǔ)藏,你可以通過名字指定它:git stash apply stash@{2}