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/22 19:45] admin [Estados de un fichero] |
clase:daw:daw:1eval:tema05 [2024/11/14 10:23] (actual) admin [Stash] |
||
---|---|---|---|
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 '' | ||
+ | </ | ||
\\ | \\ | ||
Línea 155: | Línea 157: | ||
También se puede añadir el argumento '' | También se puede añadir el argumento '' | ||
- | | | '' | + | ^ |
- | | Restaura el fichero en el //área de trabajo// | + | | '' |
- | | | + | | '' |
+ | | '' | ||
+ | | '' | ||
</ | </ | ||
Línea 269: | 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 288: | 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 385: | 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 456: | 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 464: | 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 481: | 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 ===== |