檢視儲存的進度
git stash list
恢復進度
git stash pop
測試執行哪些檔案會被刪除
git clean -nd
強制刪除
git clean -fd
儲存當前的工作進度,會儲存暫存區和工作區的狀態
git stash
檢視儲存進度列表,暗示了git stash可以多次儲存進度,在恢復時進行選擇
git stash list
恢復最新的進度
git stash pop
選擇性恢復提供<stash>引數 則從該引數列表中剔除此<stash>
git stash [--index] [<stash>]
除了不刪除進度外和上面一樣
git stash apply [--index] [<stash>]
刪除一個儲存的進度
git stash drop <stash>
刪除所有進度
git stash clear
沒有被版本系統跟蹤的檔案進度不能被儲存