Rehaciendo cambios locales
De Wiki de EGC
Revisión del 16:26 20 oct 2015 de Pneira (discusión | contribuciones)
git permite realizar cambios commits que no se hayan publicado por medio de push. Es decir, esta técnica que se describe sólo puede ser empleada cuando nuestros cambios aún permanecen en local.
Suponiendo el siguiente escenario:
% git log --oneline
32753ca Anadir fichero .gitignore
2ba6780 Introducir "Adios mundo" en el ejemplo
4dbfb62 Anadir el fichero holamundo.py
790cbd0 Initial commit
Si se desea realizar cambios sobre el commit 2ba6780, se puede invocar la orden:
% git rebase -i 2ba6780^
Que muestra lo siguiente:
pick 2ba6780 Introducir "Adios mundo" en el ejemplo
pick 32753ca Añadir fichero .gitignore
# Rebase 4dbfb62..32753ca onto 4dbfb62
#
# Commands:
# p, pick = use commit
# r, reword = use commit, but edit the commit message
# e, edit = use commit, but stop for amending
# s, squash = use commit, but meld into previous commit
# f, fixup = like "squash", but discard this commit's log message
# x, exec = run command (the rest of the line) using shell
#
# These lines can be re-ordered; they are executed from top to bottom.
#
# If you remove a line here THAT COMMIT WILL BE LOST.
#
# However, if you remove everything, the rebase will be aborted.
#
# Note that empty commits are commented out
Editando la línea correspondiente con una e se puede editar un commit, es decir:
e 2ba6780 Introducir "Adios mundo" en el ejemplo
pick 32753ca Añadir fichero .gitignore
# Rebase 4dbfb62..32753ca onto 4dbfb62
#
# Commands:
# p, pick = use commit
# r, reword = use commit, but edit the commit message
# e, edit = use commit, but stop for amending
# s, squash = use commit, but meld into previous commit
# f, fixup = like "squash", but discard this commit's log message
# x, exec = run command (the rest of the line) using shell
#
# These lines can be re-ordered; they are executed from top to bottom.
#
# If you remove a line here THAT COMMIT WILL BE LOST.
#
# However, if you remove everything, the rebase will be aborted.
#
# Note that empty commits are commented out
Una vez aplicado cambios sobre el commit, hay que añadir de nuevo el fichero que ha sido modificado:
% git add fichero.py
Y se aplica la modificación sobre el commit con:
% git commit --amend