中身を確認するにはどうすればいいですか?隠し場所実際に適用せずに?
ベストアンサー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