git/stash

Stash Changes

Stash the changes in a dirty working directory away

git
stash
changes

Command

git stash

Explanation

git stash is used to stash the changes in a dirty working directory away. It stashes the changes in a dirty working directory away.

Examples

Stash changes

git stash

Apply and remove stash

git stash pop

List all stashes

git stash list