“Obtenga todas las ramas remotas” Código de respuesta

Git busca toda rama remota

# track all remote branches:
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
# update all local copies of remote branches
git fetch --all
# update all local tracking branches
git pull --all
Misty Mallard

Mostrar todas las ramas remotas git

git branch -r
Better Bug

Obtenga todas las ramas remotas

git fetch --all
Cautious Coyote

Obtenga todas las ramas del control remoto

You can fetch all branches from all remotes like this:
git fetch --all
Devops Captain

Lista de git todas las ramas remotas

git branch -r
Matthijsmgj

Obtenga todas las ramas Git

$ git branch -a. If you require only listing the remote branches from Git Bash then use this command:
$ git branch -r. You may also use the show-branch command for seeing the branches and their commits as follows:
$ git show-branch.
Amused Alligator

Respuestas similares a “Obtenga todas las ramas remotas”

Preguntas similares a “Obtenga todas las ramas remotas”

Más respuestas relacionadas con “Obtenga todas las ramas remotas” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código