Skip to content

Instantly share code, notes, and snippets.

@Abreto
Created July 9, 2018 11: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 Abreto/7980d2de3549771360d1e8b6639de585 to your computer and use it in GitHub Desktop.
Save Abreto/7980d2de3549771360d1e8b6639de585 to your computer and use it in GitHub Desktop.
pull all remote branches to local
#!/usr/bin/env bash
cd $1
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