Aliases de Git: aplicação de força de stash e pop de força de stash

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 ~/.gitconfigarquivo:

[alias]
sfa
= !git stash show -p | git apply
sfp
= !git stash show -p | git apply && git stash drop