“Puxe o ramo do github” Respostas de código

como puxar o ramo do github

git pull origin branch-name
git switch branch-name
ExplosiveDiarrheaPig

Puxe o ramo do github

#pull changes from remote to local copy of same/current branch:
git pull

#create a new local branch
git checkout -b new-branch

#switch to an existing local branch
git checkout other-branch

#--track: remote branch speified is the basis for the newly-created local branch
git checkout -b new-branch --track origin/develop 

#restoring an old revision of a file:
git checkout <revisionID> <file>

#HEAD as the revision -> undo local changes to a file:
git checkout HEAD <file>
Solstice

Respostas semelhantes a “Puxe o ramo do github”

Perguntas semelhantes a “Puxe o ramo do github”

Mais respostas relacionadas para “Puxe o ramo do github” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código