Skip to content

Instantly share code, notes, and snippets.

@grambas
Forked from grimzy/git-pull-all
Created February 16, 2022 07:50
Show Gist options
  • Save grambas/e4c1a8e64d72fbe3dc47396269a46417 to your computer and use it in GitHub Desktop.
Save grambas/e4c1a8e64d72fbe3dc47396269a46417 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