【备忘录】git stash-考虑不需要的更改
説明コマンド変更しているファイルを退避
git stash
退避しているファイルを確認git stash list
退避したファイルを戻す(最新のもの)git stash pop stash@{0}
退避したファイルを削除(最新のもの)git stash drop stash@{0}
退避したファイルを全て削除git stash clear