git stash +

stashした中身を確認 (= 現在と比較)

 git diff "HEAD..stash@{0}"

ステージ(インデックス)のファイル以外を削除する

 git add fileA.txt # 削除したくないファイルはaddする
 git stash --keep-index # addされているファイル以外がstashされる
 git stash drop "stash@{0}" # stashを削除

特定のファイルのみstashする

 git stash -- path/to/filleA.txt # 相対、フルパスどちらでも可

stash全て削除

 git stash clear