“Comment voir la branche distante git” Réponses codées

Comment voir la branche distante git

git remote show origin
Lokesh003

git obtenir des branches distantes

git branch -r
Matthijsmgj

Comment consulter une succursale git éloignée?

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

Réponses similaires à “Comment voir la branche distante git”

Questions similaires à “Comment voir la branche distante git”

Plus de réponses similaires à “Comment voir la branche distante git” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code