Skip to content

Instantly share code, notes, and snippets.

@xaman
Last active November 21, 2017 13:27
Show Gist options
  • Save xaman/9d3367fd3523a0850c05acb0508ebd48 to your computer and use it in GitHub Desktop.
Save xaman/9d3367fd3523a0850c05acb0508ebd48 to your computer and use it in GitHub Desktop.
Git: fetch all remote branches
#
# https://stackoverflow.com/a/10312587/2271287
#
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