Skip to content

Instantly share code, notes, and snippets.

@octokas
Forked from grimzy/git-pull-all
Created October 9, 2021 12:15
Show Gist options
  • Select an option

  • Save octokas/43b65af1a094e12b522e96c7a9fc4c78 to your computer and use it in GitHub Desktop.

Select an option

Save octokas/43b65af1a094e12b522e96c7a9fc4c78 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