“Как вытащить ветвь из GitHub” Ответ

Как вытащить ветвь из GitHub

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

вытащить ветвь от 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

Ответы похожие на “Как вытащить ветвь из GitHub”

Вопросы похожие на “Как вытащить ветвь из GitHub”

Больше похожих ответов на “Как вытащить ветвь из GitHub” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования