“Git Ziehen Sie alle Zweige” Code-Antworten

Git Ziehen Sie alle Zweige

# use bash to be safe!
git fetch --all
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
git pull --all
qpwo

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

Holen Sie sich alle Zweige von der Fernbedienung

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

Ziehen Sie alle Zweige aus Remote Git

git clone http://re_here.git branch
Witty Weevil

Ähnliche Antworten wie “Git Ziehen Sie alle Zweige”

Fragen ähnlich wie “Git Ziehen Sie alle Zweige”

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

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen