Created
May 4, 2023 14:52
-
-
Save morjuax/443dd5aaa5f416b9e05a2d95c8521362 to your computer and use it in GitHub Desktop.
Git stash
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git stash: guarda los cambios temporalmente en memoria cuando no quieres hacer un commit aun | |
git stash save “mensaje”: guarda un stach con mensaje | |
git stash list: muestra la lista de cambios temporales | |
git stash pop: trae de vuelta los cambios que teníamos guardados en el ultimo stash | |
git stash apply stash@{n}: trae el stash que necesites con indicar su número dentro de las llaves | |
git stash drop: borra el ultimo stash | |
git stash clear: borra todos los stash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment