GIT revertir cambios cheatsheet
BLOG
GIT
linux
revertir cambios
shell
Para deshacer un commit manteniendo la acción en el historial (tiene más sentido si sigues confirmaciones atómicas)
git revert <commit_sha>
Para reordenar, renombrar o “aplastar” mensajes en el historial
git rebase -i HEAD~<numberofcommits>
Para añadir cambios al último commit
git commit --amend
Para cambiar el mensaje del último commit
git commit --amend -m "<commit_message>"