Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

how to recover from git stash

# List your current stashes
git stash list 
# If there is only one stash you can switch to it with
git stash pop
# If there are multiple stashes you choose by typing the name at the end i.e.
git stash pop stash@{0}
 
PREVIOUS NEXT
Tagged: #recover #git #stash
ADD COMMENT
Topic
Name
5+4 =