“rama remota de comprobación de git” 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

rama de pago de git en diferentes remotos

# First fetch all new_remote refs
git fetch new_remote
# Then
git checkout -b <branchname> --track new_remote/<branchname>
SmokeFrog

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

Respuestas similares a “rama remota de comprobación de git”

Preguntas similares a “rama remota de comprobación de git”

Más respuestas relacionadas con “rama remota de comprobación de git” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código