Uploaded December 2021 | Updated September 2026, 2 weeks ago
We'll go through how to use git stash to save your change temporarily so that you can work on something else. Stashing is a way to park your change progress in order to work on something else. This is handy when you're half way in a change, but something with high priority comes up and you don't want to lose your progress. Stashing saves your progress and returns your repository to the last commit.
#git
https://itvraag.nl
git stash
git stash -a
git stash list
git stash apply
git stash pop
git stash drop
git stash clear
We'll go through how to use git stash to save your change temporarily so that you can work on something else. Stashing is a way to park your change progress in order to work on something else. This is handy when you're half way in a change, but something with high priority comes up and you don't want to lose your progress. Stashing saves your progress and returns your repository to the last commit.
#git
https://itvraag.nl
git stash
git stash -a
git stash list
git stash apply
git stash pop
git stash drop
git stash clear










