32
31

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

git stashした内容を見たり削除したりする

Posted at

一覧を見る

git stash list
stash@{0}: WIP on develop: ...
stash@{1}: WIP on develop: ...
stash@{2}: WIP on feature/...
stash@{3}: WIP on develop: ...
stash@{4}: WIP on refactor/...

比較する

git diff HEAD..stash@{n}

削除する

git stash drop stash@{n}
32
31
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
32
31

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?