Skip to content

Latest commit

 

History

History
16 lines (8 loc) · 388 Bytes

README.md

File metadata and controls

16 lines (8 loc) · 388 Bytes

Pull Request Tutorial

Comandos para trabajar con forks:

git remote add upstream https://github.com/whoever/whatever.git (añadir al git remote el repositorio original)

git fetch upstream (actualizar el fork)

git checkout master (cambiar a la rama master)

Hacer cambios aquí

git rebase upstream/master (añadir commits)

git push -f origin master (actualizar tu repositorio)