What is the difference between using the git stash and git stash pop commands?
git stash
git stash pop
git stash saves changes to multiple branches, while git stash pop removes a commit from the repo history.
git stash removes the most recent commit, while git stash pop saves current changes.
git stash creates a stash entry, while git stash pop places a saved state from the stash list onto the working directory.
git stash removes a commit from the repo history, while git stash pop saves changes to multiple branches.