/fork

Proyecto de prueba para escribir los artículos relacionados con forks en aprendegit.com

Primary LanguageRuby

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)