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:2eval:tema06 [2021/12/14 19:47] admin [Conflictos] |
clase:daw:daw:2eval:tema06 [2025/04/13 10:37] (actual) admin [6. Control de Versiones Avanzado] |
||
---|---|---|---|
Línea 6: | Línea 6: | ||
* [[https:// | * [[https:// | ||
* [[https:// | * [[https:// | ||
+ | * [[https:// | ||
Línea 14: | Línea 15: | ||
{{: | {{: | ||
+ | {{: | ||
Ejemplo de Ramas | Ejemplo de Ramas | ||
Línea 52: | Línea 54: | ||
<sxh bash> | <sxh bash> | ||
git branch nuevaRama | git branch nuevaRama | ||
- | git checkout | + | git switch nuevaRama |
- | git push -u origin nuevaRama | + | git push --set-upstream origin |
+ | git push -u | ||
</ | </ | ||
Línea 62: | Línea 65: | ||
<sxh bash> | <sxh bash> | ||
git fetch --prune | git fetch --prune | ||
- | git checkout | + | git switch |
</ | </ | ||
<note tip> | <note tip> | ||
* '' | * '' | ||
- | * '' | + | * '' |
</ | </ | ||
Línea 76: | Línea 79: | ||
<sxh bash> | <sxh bash> | ||
- | git branch -d miRama | ||
git branch --delete miRama | git branch --delete miRama | ||
+ | git branch -d miRama | ||
</ | </ | ||
Línea 86: | Línea 89: | ||
<sxh bash> | <sxh bash> | ||
- | git branch -d -f miRama | ||
git branch --delete --force miRama | git branch --delete --force miRama | ||
+ | git branch -d -f miRama | ||
git branch -D | git branch -D | ||
</ | </ | ||
Línea 124: | Línea 127: | ||
Se usa para poner los commits de origin/ | Se usa para poner los commits de origin/ | ||
- | |||
{{: | {{: | ||
+ | |||
+ | |||
+ | '' | ||
+ | < | ||
+ | %%{init: { ' | ||
+ | gitGraph | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | |||
+ | |||
+ | </ | ||
\\ | \\ | ||
+ | '' | ||
+ | < | ||
+ | %%{init: { ' | ||
+ | gitGraph | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | |||
+ | |||
+ | </ | ||
+ | |||
+ | \\ | ||
+ | '' | ||
+ | \\ | ||
+ | '' | ||
+ | < | ||
+ | %%{init: { ' | ||
+ | gitGraph | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | |||
+ | |||
+ | </ | ||
==== git merge --squash rama ==== | ==== git merge --squash rama ==== | ||
Línea 147: | Línea 194: | ||
\\ | \\ | ||
+ | |||
+ | < | ||
+ | %%{init: { ' | ||
+ | gitGraph | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | </ | ||
+ | |||
+ | \\ | ||
+ | '' | ||
+ | < | ||
+ | %%{init: { ' | ||
+ | gitGraph | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | </ | ||
+ | |||
+ | |||
+ | \\ | ||
+ | '' | ||
+ | < | ||
+ | %%{init: { ' | ||
+ | gitGraph | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | </ | ||
+ | |||
==== git merge rama ==== | ==== git merge rama ==== | ||
Línea 162: | Línea 247: | ||
<sxh bash> | <sxh bash> | ||
git fetch --prune | git fetch --prune | ||
- | git checkout | + | git switch |
git merge --ff-only origin/ | git merge --ff-only origin/ | ||
git fetch --prune | git fetch --prune | ||
- | git checkout | + | git switch |
git merge --ff-only origin/ | git merge --ff-only origin/ | ||
git fetch --prune | git fetch --prune | ||
- | git checkout | + | git switch |
git merge --ff-only origin/ | git merge --ff-only origin/ | ||
</ | </ | ||
Línea 181: | Línea 266: | ||
<sxh bash> | <sxh bash> | ||
- | git checkout | + | git switch |
git merge --ff-only develop | git merge --ff-only develop | ||
- | git checkout | + | git switch |
git merge --ff-only release | git merge --ff-only release | ||
</ | </ | ||
Línea 196: | Línea 281: | ||
<sxh bash> | <sxh bash> | ||
git fetch --prune | git fetch --prune | ||
- | git checkout | + | git switch |
git rebase origin/ | git rebase origin/ | ||
</ | </ | ||
Línea 218: | Línea 303: | ||
<sxh bash> | <sxh bash> | ||
- | git checkout | + | git switch |
git merge --squash lorenzo_42 | git merge --squash lorenzo_42 | ||
git commit -am " | git commit -am " | ||
Línea 232: | Línea 317: | ||
<sxh bash> | <sxh bash> | ||
- | git checkout | + | git switch |
git merge develop | git merge develop | ||
Línea 362: | Línea 447: | ||
<sxh bash> | <sxh bash> | ||
- | git checkout | + | git switch |
git rebase origin/ | git rebase origin/ | ||
vi index.html | vi index.html | ||
Línea 392: | Línea 477: | ||
<sxh bash> | <sxh bash> | ||
- | git checkout | + | git switch |
git merge --squash Lorenzo_3 | git merge --squash Lorenzo_3 | ||
vi index.html | vi index.html | ||
Línea 432: | Línea 517: | ||
<sxh bash> | <sxh bash> | ||
- | git checkout | + | git switch |
git merge develop | git merge develop | ||
vi index.html | vi index.html | ||
Línea 440: | Línea 525: | ||
\\ | \\ | ||
- | ===== Stash ===== | ||
- | Hay veces que queremos guardar temporalmente los cambios para despues volver a ellos, por ejemplo si queremos cambiar de rama. | ||
- | |||
- | git contiene una orden para hacer eso: | ||
- | <sxh bash> | ||
- | git stash | ||
- | </ | ||
- | |||
- | Y si luego queremos recuperar los cambios se hace con: | ||
- | |||
- | <sxh bash> | ||
- | git stash pop | ||
- | </ | ||
===== Recetas ===== | ===== Recetas ===== | ||
Línea 459: | Línea 531: | ||
<sxh bash> | <sxh bash> | ||
- | git fetch --prune && git checkout | + | git fetch --prune && git switch |
</ | </ | ||
Línea 465: | Línea 537: | ||
<sxh bash> | <sxh bash> | ||
- | git checkout | + | git switch |
</ | </ | ||
Línea 471: | Línea 543: | ||
<sxh bash> | <sxh bash> | ||
- | git checkout | + | git switch |
</ | </ | ||
+ | * Proceso completo para hacer una modificacion en la propia rama y ponerla en develop | ||
+ | <sxh bash> | ||
+ | #Día 1:Lunes | ||
+ | git fetch --prune && git switch develop && git merge --ff-only origin/ | ||
+ | git branch lorenzo_45 | ||
+ | git switch lorenzo_45 | ||
+ | git push --set-upstream origin lorenzo_45 | ||
+ | git commit -m " | ||
+ | git commit -m " | ||
+ | git push | ||
+ | |||
+ | #Día 2:Martes | ||
+ | git fetch --prune && git switch develop && git merge --ff-only origin/ | ||
+ | git switch lorenzo_45 | ||
+ | git merge develop | ||
+ | git commit -m " | ||
+ | git commit -m " | ||
+ | git commit -m " | ||
+ | git push | ||
+ | |||
+ | #Día 3:Miercoles | ||
+ | git fetch --prune && git switch develop && git merge --ff-only origin/ | ||
+ | git switch lorenzo_45 | ||
+ | git merge develop | ||
+ | git commit -m " | ||
+ | git commit -m " | ||
+ | git commit -m " | ||
+ | git push | ||
+ | |||
+ | |||
+ | #Día 4: Jueves | ||
+ | git fetch --prune && git switch develop && git merge --ff-only origin/ | ||
+ | git switch lorenzo_45 | ||
+ | git merge develop | ||
+ | git commit -m " | ||
+ | git commit -m " | ||
+ | git commit -m " | ||
+ | git push | ||
+ | |||
+ | |||
+ | #Día 5: Viernes | ||
+ | git fetch --prune && git switch develop && git merge --ff-only origin/ | ||
+ | git switch lorenzo_45 | ||
+ | git merge develop | ||
+ | |||
+ | git switch develop | ||
+ | git merge --squash lorenzo_45 | ||
+ | git commit -am " | ||
+ | git push | ||
+ | #Si falla el push hacer el fetch y rebase | ||
+ | git fetch --prune | ||
+ | git rebase origin/ | ||
+ | git push | ||
+ | |||
+ | git push origin --delete lorenzo_45 | ||
+ | git branch --delete --force lorenzo_45 | ||
+ | |||
+ | </ | ||