# te deja editar los 2 últimso commits del HEAD
git rebase -i HEAD~2
#cambiar el `pick` por un `fixup` del commit que quieres hacer el squash
pick 01d1124 Adding license (commit que quiero mantener)
f 6340aaa Moving license into its own file (commit quiero mergear sin mantener el commit message)
f ebfd367 Jekyll has become self-aware.(commit quiero mergear sin mantener el commit message)
f 30e0ccb Changed the tagline in the binary, too.(commit quiero mergear sin mantener el commit message)
#teclear ESC + wq
# volver a subir la rama, forzando
git push origin <branch_name> -f
# abort
git rebase --abort