目次

Stash

基本的な退避

git stash

コメントを付けた退避

git stash save "<コメント>"

一覧表示

git stash list

取り込み

git stash apply stash@{n}

ポップ

git stash pop stash@{n}

削除

git stash drop stash@{n}

全削除

git stash clear

退避内容の確認

git stash show stash@{n}