Git stash

Stash

git stash list´

# create or save stash
git stash 
# or
git stash save "description"

# Apply latest Stash stash@{0}
git stash apply 
# or
git stash apply stash@{1}

# Pop (Apply and Remove): 
git stash pop

# Drop Stash: 
git stash drop stash@{0}