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:
git fetch --all
1 comments
Add comment
or with git pull --all that calls git pull --all and inserts fetched code into the project directory that we work.