I have stash_one as stash@{1} and stash_two as stash@{2} . now if i do
git stash apply stash@{1} then on my editor i will have all the changes which was in stash_one.
But when i do git stash apply stash@{2} , then it says
Please commit your changes or stash them before you merge.
I dont want to merge it . I want to apply stash_two also , So that I can see both the changes of stash_one and stash_two at once. How can I do it?