Answers for "remove stash files git"

4

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
14

git stash clean command

git stash clear
Posted by: Guest on April-23-2020
7

git delete stash

git stash drop stash@{index}   // here index will be shown after getting stash list.
Posted by: Guest on April-22-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language