スタッシュを適用して削除するgitコマンドはありますか?
これを1つのコマンドとして:
git stash apply
git stash drop
あなたが欲しいgit stash pop
!
pop [--index] [-q|--quiet] [<stash>]
Remove a single stashed state from the stash list and apply it on
top of the current working tree state, i.e., do the inverse
operation of git stash save. The working directory must match the
index.
git stash pop
リストの最初のスタッシュ(または指定したスタッシュ)を取得し、に適用してHEAD
、スタッシュリストから削除します。