“Git Checkout a Remote Branch” Código de respuesta

Git Checkout Remote Branch en Git

git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
git fetch --all
git pull --all
Happy Hoopoe

Tirar hacia abajo Git de rama remota

git fetch origin

git checkout --track origin/<branch_name>
Disturbed Dingo

rama remota de comprobación de git

git checkout --track origin/<branchname>
Bad Bug

Rama remota de comprobación

git fetch origin 

git checkout –track origin/xyz 
Shy Shrike

GIT - Vea una rama remota específica

$ git checkout -t origin/remote-branch

Branch 'remote-branch' set up to track remote branch 'remote-branch' from 'origin'.
Switched to a new branch 'remote-branch'
Michael Futral

Git Checkout a Remote Branch

$ git checkout -b test origin/test
Manish Khulbe

Respuestas similares a “Git Checkout a Remote Branch”

Preguntas similares a “Git Checkout a Remote Branch”

Más respuestas relacionadas con “Git Checkout a Remote Branch” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código