Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

git stash show

# Show the files in the most recent stash:
git stash show

# Show the changes of the most recent stash:
git stash show -p

# Show the changes of the named stash:
git stash show -p stash@{1}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #git #stash #show
ADD COMMENT
Topic
Name
2+3 =