how to fetch all branches in git code example
Example 1: how to update remote branches list git
git remote update origin --prune
Example 2: git fetch all remote branch
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
git fetch --all
git pull --all
Example 3: how to see all branches in git
git branch -a
Example 4: get all remote branches
git fetch --all
Example 5: get all branches from remote
You can fetch all branches from all remotes like this:
git fetch --all