😎

git stash

に公開

git stash

追跡しているファイルの変更箇所をスタックに格納し、後で好きな時に適用できるようにするもの。

自分の作業を隠す

git status

汚い状態

git stash

もしくは

git stash save
git status

綺麗になっている

git stash list

スタッシュの一覧を確認

git stash apply

最新を適用

git stash apply stash@{2}

名前を指定して適用

git stash apply --index

ステージングも適用

git stash drop

削除

git stash pop

適用して削除

Discussion