Bash
Public
Stash Work in Progress
Temporarily save unfinished changes and restore them later.
#git
#stash
#workflow
#student
Bash
git stash push -m "work in progress"
git stash list
git stash pop
Notes
Stash is helpful before switching branches when your current work is not ready to commit.