diff --git a/Workflows-y-acciones-colaborativas.md b/Workflows-y-acciones-colaborativas.md index 17625d4..48505a1 100644 --- a/Workflows-y-acciones-colaborativas.md +++ b/Workflows-y-acciones-colaborativas.md @@ -86,7 +86,7 @@ git push origin master Para trabajar con proyectos de terceros **actualizar siempre** el repositorio local con el principal, antes de hacer o subir cambios. -Se tiene: +Se tiene: - Un repositorio personal ***Forked***, en github (**origin**) - Un repositorio original ***Principal***, en github (**upstream**) - Un repositorio local, @@ -113,10 +113,12 @@ git merge upstream/master # Subir los cambios a Repositorio Fork git push origin master +# Solicitar fusionar cambios a Repositorio Original Forked (pull request) +git push origin upstream ``` ![fork-workflow](https://gitea.kickto.net/jp.av.dev/basicos_git/raw/branch/master/assets/images/fork-workflow.png) - + ----- **Ir a:**