Answers for "git stash pop force"

29

git stash pop force

# You can always retrieve stashed changes using `git stash`

git stash # To add changes to stash stack
git stash list # Shows list of stashed changes
git stash apply stash@{0} # Retrieve stash
git stash clear # Clear stash list
Posted by: Guest on March-11-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language