Staging and commitsGit
git stash
Temporarily shelve uncommitted work.
Command
git stash push -m ""
Example usage
Save work-in-progress with labels and reapply when ready.
git stash push -m "<label>"
git stash apply stash@{0}
Related tags
Staging and commitsversion-controlworkflow