Process Flow - git stash pop to restore
Make changes in working directory
Run git stash
Changes saved and working directory clean
Run git stash pop
Changes restored to working directory
Stash entry removed from stash list
This flow shows how changes are saved temporarily with git stash, then restored and removed from stash using git stash pop.