git stash

Almacena los cambios locales de Git en un área temporal. Más información: https://git-scm.com/docs/git-stash.

git stash push {{[-m|--message]}} {{mensaje_opcional_stash}}

git stash {{[-u|--include-untracked]}}

git stash {{[-p|--patch]}}

git stash list

git stash show {{[-p|--patch]}} {{stash@{0}}}

git stash apply {{nombre_opcional_del_stash_o_confirmación}}

git stash pop {{nombre_opcional_stash}}

git stash clear