48

スタッシュを適用して削除するgitコマンドはありますか?

これを1つのコマンドとして:

git stash apply
git stash drop
4

2 に答える 2

78

あなたが欲しい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.
于 2013-02-08T17:54:30.703 に答える
21

git stash popリストの最初のスタッシュ(または指定したスタッシュ)を取得し、に適用してHEAD、スタッシュリストから削除します。

于 2013-02-08T17:54:21.080 に答える