Skip to content

Instantly share code, notes, and snippets.

@juniorcesarabreu
Forked from grimzy/git-pull-all
Created July 31, 2021 22:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juniorcesarabreu/a0ff9882cfe2ba13594c09ad434be3f0 to your computer and use it in GitHub Desktop.
Save juniorcesarabreu/a0ff9882cfe2ba13594c09ad434be3f0 to your computer and use it in GitHub Desktop.
Git pull all remote branches
#!/usr/bin/env bash
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
git fetch --all
git pull --all
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment