Aplicar força de armazenamento
git config --global alias.sfa '!git stash show -p | git apply'
Stash force pop
git config --global alias.sfp '!git stash show -p | git apply && git stash drop'
Ou edite seu ~/.gitconfig
arquivo:
[alias]
sfa = !git stash show -p | git apply
sfp = !git stash show -p | git apply && git stash drop