“Abrufen Sie alle Git -Zweige” Code-Antworten

Git holt den gesamten Remote -Zweig ab

# 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

Alle Zweige holen

git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
git fetch --all
git pull --all
Happy Hoopoe

Holen Sie sich alle Zweige von der Fernbedienung

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

Holen Sie sich alle Braches in Git

git fetch --all
loonix

Abrufen Sie alle Git -Zweige

# add a existing branch from a repository to your local 
git fetch origin <name of branch>
# example 
git fetch origin test2
# if you want fetch to get all branch ,
git fetch --all
polyglot orca

Ähnliche Antworten wie “Abrufen Sie alle Git -Zweige”

Fragen ähnlich wie “Abrufen Sie alle Git -Zweige”

Weitere verwandte Antworten zu “Abrufen Sie alle Git -Zweige” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen