Modificar un commit
Vaya al directorio git-tutorial/tutorial1
que acaba de descargar.
Cuando examine el historial de este repositorio, tendrá el siguiente aspecto:
Para confirmar el historial del repositorio, utilice el comando git log y verá lo siguiente:
$ git log
commit f01c8c09f09e14063feb13b24be592e507ea365b (HEAD -> main)
Author: yourname <yourname@yourmail.com>
Date: Mon Jul 16 23:17:56 2012 +0900
EDITED: append description of the add command
commit 0de54de5d846d5fb800cf0f4d74f0c79d2e0a186
Author: yourname <yourname@yourmail.com>
Date: Mon Jul 16 23:16:14 2012 +0900
first commit
Reescribamos el primer commit en el registro histórico.
En primer lugar, abra el archivo sample.txt
y añada el texto en negrita que aparece a continuación.
Anyone can learn Git with this tutorial and Backlog add: Register a change
in an index
commit: Save the status of an index
Confirme con la opción --amend
.
$ git add sample.txt
$ git commit --amend
Se abrirá su editor por defecto con el último mensaje de confirmación, que podrá editar. Para este tutorial, vamos a cambiar el mensaje a "Add direction of the Add and the Commit", a continuación, guardar y salir del editor de texto.
El mensaje de confirmación se ha actualizado. Utilice de nuevo el comando log para comprobar que el historial del repositorio y el mensaje de la nueva confirmación tienen este aspecto:
$ git log
commit e9d75a02e62814541ee0410d9c1d1bf47ab1c057
Author: yourname
Date: Mon Jul 16 23:17:56 2022 +0900
Add direction of the Add and the Commit
commit 48eec1ddf73a7fb508ef664efd6b3d873631742f
Author: yourname
Date: Mon Jul 16 23:16:14 2022 +0900
first commit