stashに入れる
git stash save
git stash
git stash "message"
satshのデフォがsaveなので、save
がなくてもok。
"message"はオプション。stashの内容をコメントしたいときに使う。
stashのリスト
git stash list
stashをワーキングに反映させる
git stash pop
git stash pop stash@{0}
git stash save
git stash
git stash "message"
satshのデフォがsaveなので、save
がなくてもok。
"message"はオプション。stashの内容をコメントしたいときに使う。
git stash list
git stash pop
git stash pop stash@{0}