スタッシュを適用せずに何が入っているか確認する [重複] 質問する

スタッシュを適用せずに何が入っているか確認する [重複] 質問する

中身を確認するにはどうすればいいですか?隠し場所実際に適用せずに?

ベストアンサー1

からman git-stash( 経由でも取得可能git help stash):

このコマンドによって保存された変更は、 を使用して一覧表示したりgit stash listを使用して検査したりすることができます。git stash show

show [<stash>]
    Show the changes recorded in the stash as a diff between the stashed
    state and its original parent. When no <stash> is given, shows the
    latest one. By default, the command shows the diffstat, but it will
    accept any format known to git diff (e.g., git stash show -p stash@{1}
    to view the second most recent stash in patch form).

注: この-pオプションは、ドキュメントに従ってパッチgit-diffを生成します。

隠し場所をリストします:

git stash list

最新のスタッシュ内のファイルを表示します:

git stash show

最新のスタッシュの変更を表示します:

git stash show -p

名前付きスタッシュの変更を表示します:

git stash show -p stash@{1}

あるいは簡単に言うと:

git stash show -p 1 

最後のスタッシュの変更のみを表示する場合:

git stash show -p 0

おすすめ記事