Question: You stashed three sets of changes but cannot remember the contents of the first stash entry. What command would you use to see the details of the changes in the first of the three stash entries?

  1. git stash show -p stash@{2}
  2. git stash list
  3. git stash show -p stash@{1}
  4. git stash show -p

Answer: The correct answer of the above question is Option A:git stash show -p stash@{2}