“Cómo ver la rama remota Git” Código de respuesta

Cómo ver la rama remota Git

git remote show origin
Lokesh003

Git obtenga ramas remotas

git branch -r
Matthijsmgj

¿Cómo reviso una rama de git remota?

In this case, you probably want to create a local test branch which is tracking the remote test branch:

$ git branch test origin/test
In earlier versions of git, you needed an explicit --track option, but that is the default now when you are branching off a remote branch.

To create the local branch and switch to it, use:

$ git checkout -b test origin/test
shafeeque

Respuestas similares a “Cómo ver la rama remota Git”

Preguntas similares a “Cómo ver la rama remota Git”

Más respuestas relacionadas con “Cómo ver la rama remota Git” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código