web-dev-qa-db-ja.com

適用しないで隠し場所にあるものを見ない

可能な重複:
stitの内容をgitでプレビューすることはできますか?

ここ 隠し場所を適用/適用解除したり、隠し場所から新しいブランチを作成することもできます。実際に適用しなくても、隠し場所の中身を簡単に確認することはできますか。

1439
Chris Abrams

man git-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).

隠された変更を一覧表示する

git stash list

最後の段階で変更されたファイルを表示する

git stash show

そのため、最新の隠し場所のコンテンツを表示するには、次のコマンドを実行します。

git stash show -p

任意の隠し場所の内容を表示するには、次のように実行します。

git stash show -p stash@{1}
2030
simont