git stash applyを実行するとき、使用可能なstashからそのstashを削除するために、gitstashdropと入力する必要があるようです。これを1つのコマンドで実行できますか?
質問する
108 次
1 に答える
7
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.
Applying the state can fail with conflicts; in this case, it is not
removed from the stash list. You need to resolve the conflicts by hand
and call git stash drop manually afterwards.
于 2012-07-05T20:06:04.167 に答える