2280

ここでは、スタッシュを適用/適用解除したり、スタッシュから新しいブランチを作成したりすることもできます。実際に適用せずに、隠し場所の内容を簡単に確認することはできますか?

4

1 に答える 1

3167

から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

最新の stash にあるファイルを表示します。

git stash show

最新の stashの変更を表示します。

git stash show -p

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

git stash show -p stash@{1}
于 2012-05-23T18:58:49.773 に答える