Mobile Mind Empresa de Tecnologia
4MINDS
Contato
Ajuda
Entrar
Você está em »
Home
/
Visualização de Artigo
Tipo do Conteúdo
Git
Geral
Baixar em PDF
Update forked repository on github
Identificador:
11766
Autor:
Ricardo Bocchi
segunda-feira, Dia 1 de maio de 2023, às 02:59:32 horas
Revisado Por:
sexta-feira, Dia 2 de março de 2018, às 17:41:09 horas
Visualização:
Todos
Pontos:
0
  
Acessos:
5062
First, configure original repository (
https://help.github.com/articles/configuring-a-remote-for-a-fork/
)
$ git remote add upstream https://github.com/owner/repo_name
After, fetch update, merge and push (
https://help.github.com/articles/syncing-a-fork/
)
$ git fetch upstream
$ git merge upstream/master
$ git push origin master