git stash
注意作業を一時退避
git stash push -m "wip"
未コミットの変更を一時退避し、後で戻す。ブランチ切替前に便利。
実行例
git stash pop退避を戻す
書式
git stash [push -m <msg>] | list | pop | drop
注意作業を一時退避
git stash push -m "wip"
未コミットの変更を一時退避し、後で戻す。ブランチ切替前に便利。
git stash pop退避を戻すgit stash [push -m <msg>] | list | pop | drop