Hi,
in your example with git stash, I would have used git stash pop instead of git stash apply in order to retrieve "the same state" than previously. pop removes the last stash from the stash list, apply doesn't.
git stash pop
git stash apply
pop
apply
Hi,
in your example with git stash, I would have used
git stash popinstead ofgit stash applyin order to retrieve "the same state" than previously.popremoves the last stash from the stash list,applydoesn't.