stashing
What is git stashing?
Stashing takes the dirty state of your working directory — that is, your modified tracked files and staged changes — and saves it on a stack of unfinished changes that you can reapply at any time (even on a different branch).
In simple words, all uncommited changes can be temporary saved, and be applied to the same or another branch later on.
How to use git stashing?
Last updated
Was this helpful?