Answers for "un stash changes git"

9

remove stash files git

# remove all stashed files at once:
git stash clear
# remove a single stashed state from the stash list
git stash drop 'stash@{index}'
Posted by: Guest on February-04-2021
3

how to unstash git stash

git stash pop
Posted by: Guest on July-06-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language