git stash

git 暫存技巧

暫存git工作區

  • 印出目前暫存工作區

    git stash list

  • 暫存工作區

    git stash

    Untracked 狀態的檔案預設沒辦法被 Stash,需要額外使用 -u 參數。

Reference