“Como ver o ramo remoto git” Respostas de código

Como ver o ramo remoto git

git remote show origin
Lokesh003

Git Obtenha galhos remotos

git branch -r
Matthijsmgj

Como faço para ver uma filial 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

Respostas semelhantes a “Como ver o ramo remoto git”

Perguntas semelhantes a “Como ver o ramo remoto git”

Mais respostas relacionadas para “Como ver o ramo remoto git” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código