Skip to content

Instantly share code, notes, and snippets.

@joacim-boive
Forked from grimzy/git-pull-all
Created January 7, 2018 17:26
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 joacim-boive/d63515343da95c0ab9da8c1203cc2dbb to your computer and use it in GitHub Desktop.
Save joacim-boive/d63515343da95c0ab9da8c1203cc2dbb 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