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 pop
instead ofgit stash apply
in order to retrieve "the same state" than previously.pop
removes the last stash from the stash list,apply
doesn't.