informatica:git
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| informatica:git [2019/12/30 19:07] – [Añadir rama branch] jose | informatica:git [2024/10/17 14:56] (current) – jose | ||
|---|---|---|---|
| Line 116: | Line 116: | ||
| cat / | cat / | ||
| </ | </ | ||
| + | |||
| + | ===== Volver a un commit previo ===== | ||
| + | |||
| + | Escenario: | ||
| + | |||
| + | * Queremos volver a un commit previo | ||
| + | * Queremos hacer un nuevo commit indicando "se ha vuelto al commit XXXX" | ||
| + | |||
| + | 1. Identificar el commit ID al que queremos volver: | ||
| + | |||
| + | git log | ||
| + | |||
| + | En este ejemplo: | ||
| + | |||
| + | commit c501b1d989d780ab17412fc646b62bfe24aa24d5 (tag: v0.10.0) | ||
| + | |||
| + | 2. Volver a ese commit en la copia local: | ||
| + | |||
| + | git reset --hard c501b1d989d780ab17412fc646b62bfe24aa24d5 | ||
| + | |||
| + | 3. **TODO**: clarificar qué hace exactamente este paso | ||
| + | |||
| + | git reset --soft HEAD@{1} | ||
| + | |||
| + | 4. Hacer un nuevo commit | ||
| + | |||
| + | git commit -m " | ||
| + | |||
| + | 5. Subir los cambios al repositorio remoto | ||
| + | |||
| + | git push | ||
| ===== Comandos sueltos ===== | ===== Comandos sueltos ===== | ||
| Line 207: | Line 238: | ||
| git push -u origin master | git push -u origin master | ||
| </ | </ | ||
| + | |||
| + | ====== Deshacer un commit manteniendo cambios en local ====== | ||
| + | Si hacemos un commit antes de un pull y en el servidor hay cambios pero nuestro commit no afecta a esos cambios, para evitar conflictos, deshacemos el commit pero manteniendo los cambios en local: | ||
| + | git reset --soft HEAD^ | ||
| + | |||
informatica/git.1577732850.txt.gz · Last modified: by jose
