Fetch all Branches

PHOTO EMBED

Tue Sep 21 2021 10:42:30 GMT+0000 (Coordinated Universal Time)

Saved by @jolo #setting #git

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

It fetches all branches when `git fetch --all` not work

https://stackoverflow.com/questions/10312521/how-to-fetch-all-git-branches#10312587