Skip to content

Instantly share code, notes, and snippets.

@MayumyCH
Last active May 13, 2020 20:11
Show Gist options
  • Save MayumyCH/1bc24399b9432ccd730d4157375eb9a2 to your computer and use it in GitHub Desktop.
Save MayumyCH/1bc24399b9432ccd730d4157375eb9a2 to your computer and use it in GitHub Desktop.
Guardar cambios GIT TEMPORAL

GIT - gitStash

Guardar temporalmente los cambios fuera de nuestra rama de trabajo.

git stash

Listando cambios guardados con stash

git stash list

Recuperando cambios guardados

  • Para ver el cambio que queremos recuperar

    git stash show -p stash@{0}

  • Para recuperarlos archivos

    git stash apply stash@{0}

Eliminando cambios guardados

git stash drop

@MayumyCH
Copy link
Author

MayumyCH commented Nov 7, 2019

git stash pop

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment