Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

git stash

# You can always retrieve stashed changes using `git stash`

git stash # To add changes to stash stack
git stash list # Shows list of stashed changes
git stash apply stash@{0} # Retrieve stash
git stash clear # Clear stash list
Source by git-scm.com #
 
PREVIOUS NEXT
Tagged: #git #stash
ADD COMMENT
Topic
Name
2+7 =