-
Notifications
You must be signed in to change notification settings - Fork 3
Sincronizando seu fork com o repositório principal
Vinícius Aires Barros edited this page Dec 13, 2015
·
2 revisions
- Adicione um remote que aponte para o repositório de origem com o comando:
``git remote add upstream https://github.com/maratonato/maratonato.github.io.git`
- Agora você vai ter um remote chamado
origin
e o recém adicionadoupstream
para conferir digite
git remote -v
- Com o comando abaixo baixe as alterações do remote
upstream
git fetch upstream
- Você pode notar que os remotes não estão sincronizados.
git branch -va
- Garanta que você está na branch
master
git checkout master
- Faça o merge da branch
master
doupstream
no seu repositório local.
git merge upstream/master
- Envie para o Github
git push
- E então inicie suas alterações.