parent
41d977e84f
commit
47c9045580
@ -76,16 +76,26 @@ Para trabajar con proyectos de terceros **actualizar siempre** el
|
|||||||
repositorio local con el principal, antes de hacer o subir cambios.
|
repositorio local con el principal, antes de hacer o subir cambios.
|
||||||
|
|
||||||
```
|
```
|
||||||
# git clone [ssh o HTTPS]
|
# git init
|
||||||
git remote add origin [ssh o HTTPS]
|
# git config --local user.name "nombre"
|
||||||
git remote add upstream
|
# git config --local user.email "mail"
|
||||||
|
# git config --local core.sshCommand "ssh -i ~/.ssh/llave_ssh -F /dev/null"
|
||||||
|
|
||||||
git fetch upstream
|
# Agregar como origen el repositorio personal, Fork de otro repositorio
|
||||||
git merge origin/upstream
|
git remote add origin gitea@gitea.kickto.net/jp.av.dev/testingFork.git
|
||||||
|
|
||||||
|
# Agregar como upstream el repositorio original, Forked
|
||||||
|
git remote add upstream https://gitea.kickto.net/Fuzan/testingFork.git
|
||||||
|
|
||||||
|
# Descargar y fusionar repositorio Fork (personal)
|
||||||
git fetch origin
|
git fetch origin
|
||||||
git merge origin/master
|
git merge origin/master
|
||||||
|
|
||||||
|
# Descargar y fusionar cambios del repositorio Forked
|
||||||
|
git fetch upstream
|
||||||
|
git merge upstream/master
|
||||||
|
|
||||||
|
# Subir los cambios a Repositorio Fork
|
||||||
git push origin master
|
git push origin master
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user