“O que é upstream no git” Respostas de código

git configurado upstream

git branch --set-upstream-to <remote-branch>

// example
git branch --set-upstream-to origin feature-branch

// show up which remote branch a local branch is tracking
git branch -vv

// short version to set upstream with very first push
git push -u origin local-branch
LePeppino

O que é upstream no git

What is an upstream repository (in the context of a forked repo?)

In the context of a Forked git repository, upstream refers to the 
original parent repository from which the fork was created.
KostasX

Respostas semelhantes a “O que é upstream no git”

Perguntas semelhantes a “O que é upstream no git”

Mais respostas relacionadas para “O que é upstream no git” em HTML

Procure respostas de código populares por idioma

Procurar outros idiomas de código