EN
Git pull all branches to local repository
1 answers
19 points
How can I pull all branches to local repository from remote repository in git?
1 answer
10 points
Quick solution:
xxxxxxxxxx
1
git fetch --all
1 commentsShow commentsAdd comment
4y
or with git pull --all that calls git pull --all and inserts fetched code into the project directory that we work.