Using following stash list how you pull in the oldest stash while ensuring that you maintain it in the stash.
The list is :
stash@{0}: WIP on feature/feature1: 2f78364 New text
stash@{1}: WIP on feature/feature1: 2f78364 New text
Options are:
- git stash apply stash@{0}
- git stash apply stash@{1}
- git stash pop stash@{0}
- git stash pop stash@{1}
I answered as 1, but the correct answer is 2. By framing the question as oldest stash, I thought the first entry which is stash@{0} is the oldest entry which is apparently not. Correct answer is 2.
How?