Skip to content

Instantly share code, notes, and snippets.

@feinar
Forked from grimzy/git-pull-all
Created April 22, 2020 11:08
Show Gist options
  • Select an option

  • Save feinar/3d288ccf21d4027d67477deb24a2b5ff to your computer and use it in GitHub Desktop.

Select an option

Save feinar/3d288ccf21d4027d67477deb24a2b5ff 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