Answers for "how long is git stash available"

2

view git stash without applying

git stash show -p stash@{1}
Posted by: Guest on May-06-2020
1

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}
Posted by: Guest on April-26-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language