Muestra las diferencias entre dos versiones de la página.
Ambos lados, revisión anterior Revisión previa Próxima revisión | Revisión previa | ||
clase:daw:daw:1eval:tema05 [2024/09/20 09:18] admin [Estados de un fichero] |
clase:daw:daw:1eval:tema05 [2024/11/14 10:23] (actual) admin [Stash] |
||
---|---|---|---|
Línea 81: | Línea 81: | ||
<note tip> | <note tip> | ||
- | La //**staged area**// en git también se llama a veces // | + | La //**staged area**// en git también se llama a veces // |
* El comando [[https:// | * El comando [[https:// | ||
- | * El comando [[https:// | + | * El comando [[https:// |
* El comando [[https:// | * El comando [[https:// | ||
- | ^ ^ '' | + | ^ ^ '' |
- | ^ '' | + | ^ '' |
- | ^ '' | + | ^ '' |
- | ^ '' | + | ^ '' |
</ | </ | ||
Línea 138: | Línea 138: | ||
* Para borrar un fichero y que ya no esté a partir de ahora en " | * Para borrar un fichero y que ya no esté a partir de ahora en " | ||
- | git rm --cached fichero. | + | git rm --cached fichero |
+ | < | ||
+ | También se puede usar el comando '' | ||
+ | </ | ||
\\ | \\ | ||
\\ | \\ | ||
- | * Para deshacer los cambios de un fichero que hay en el area de trabajo y se cambie por la versión que hay en el último //commit//. | + | * Para deshacer los cambios de un fichero que hay en el área de trabajo y se cambie por la versión que hay en el último //commit//. |
git restore fichero | git restore fichero | ||
Línea 151: | Línea 153: | ||
También se puede usar el comando '' | También se puede usar el comando '' | ||
</ | </ | ||
+ | |||
+ | < | ||
+ | También se puede añadir el argumento '' | ||
+ | |||
+ | ^ | ||
+ | | '' | ||
+ | | '' | ||
+ | | '' | ||
+ | | '' | ||
+ | </ | ||
+ | |||
+ | |||
\\ | \\ | ||
\\ | \\ | ||
Línea 258: | Línea 272: | ||
* Para //mergear// lo que hay en la rama '' | * Para //mergear// lo que hay en la rama '' | ||
- | git merge origin/ | + | git merge --ff-only |
\\ | \\ | ||
Línea 277: | Línea 291: | ||
* Para añadir un nuevo remote | * Para añadir un nuevo remote | ||
- | git remote add otroservidor | + | git remote add nombreminuevoremote |
Una vez creado el remote '' | Una vez creado el remote '' | ||
Línea 374: | Línea 388: | ||
* [[https:// | * [[https:// | ||
* [[https:// | * [[https:// | ||
+ | |||
+ | ===== Deshacer commits ===== | ||
+ | Una vez que hemos subido un commit a GitHub es una muy mala práctica borrar un commit sin embargo si queremos deshacer algo , podemos usar '' | ||
+ | |||
+ | |||
+ | * Se hace un nuevo commit que deshace el último commit | ||
+ | |||
+ | git revert HEAD~1 | ||
+ | |||
+ | * Prepara un nuevo commit que deshace el último commit pero sin realmente hacer el commit. Lo que hace el modificar los ficheros y añadirlos a la //staged area// | ||
+ | |||
+ | |||
+ | git revert --no-commit HEAD~1 | ||
+ | git commit -am " | ||
+ | |||
+ | |||
+ | <note tip>La opción '' | ||
+ | |||
+ | Si no estamos interesados en hacer el commit lo podemos abortar con '' | ||
+ | </ | ||
+ | |||
+ | <note important> | ||
+ | En caso de un conflicto se deberá resolver el conflicto en el fichero, hacer el '' | ||
+ | </ | ||
+ | |||
+ | |||
+ | <note tip> | ||
+ | La diferencia entre '' | ||
+ | |||
+ | |||
+ | |||
+ | * Estado inicial de | ||
+ | |||
+ | < | ||
+ | %%{init: { ' | ||
+ | gitGraph | ||
+ | | ||
+ | | ||
+ | | ||
+ | </ | ||
+ | |||
+ | * Si hacemos un '' | ||
+ | |||
+ | < | ||
+ | %%{init: { ' | ||
+ | gitGraph | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | </ | ||
+ | |||
+ | |||
+ | * Si hacemos un '' | ||
+ | |||
+ | < | ||
+ | %%{init: { ' | ||
+ | gitGraph | ||
+ | | ||
+ | | ||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | |||
===== Moverse por git ===== | ===== Moverse por git ===== | ||
Línea 445: | Línea 527: | ||
git contiene una orden para hacer eso que es '' | git contiene una orden para hacer eso que es '' | ||
- | * Guardar solo lo que está en la //stage area//. | + | * Guardar solo lo modificado (estén o no en el //staged |
<sxh bash > | <sxh bash > | ||
git stash push | git stash push | ||
Línea 453: | Línea 535: | ||
* Guarda todos los ficheros aunque NO estén en la //stage area//. Es decir, también los ficheros nuevos. Y al hacer el '' | * Guarda todos los ficheros aunque NO estén en la //stage area//. Es decir, también los ficheros nuevos. Y al hacer el '' | ||
<sxh bash> | <sxh bash> | ||
- | git stash push --include-untracked | + | git stash push --include-untracked |
</ | </ | ||
- | ^ | + | ^ |
- | | Los ficheros modificados | + | | Los ficheros modificados |
- | | Los ficheros nuevos | | ✓ | ✓ | + | | Los ficheros nuevos | | ✓ | ✓ | |
- | | Los ficheros | + | | Los ficheros ignorados | | | ✓ | |
- | | Restaura la staged area | | | | ✓ | | + | |
- | + | ||
Línea 470: | Línea 549: | ||
<sxh bash> | <sxh bash> | ||
- | git stash pop | + | git stash pop |
</ | </ | ||
+ | * Pero en el caso de hubiera algo en el //staged area// se tendría que hacer con el argumento '' | ||
+ | |||
+ | <sxh bash> | ||
+ | git stash pop --index | ||
+ | </ | ||
===== Log ===== | ===== Log ===== |