Skip to content

Instantly share code, notes, and snippets.

@wxgrzr
Last active January 19, 2022 08:52
Show Gist options
  • Save wxgrzr/4c723f9f8a3409d2f40e900847527849 to your computer and use it in GitHub Desktop.
Save wxgrzr/4c723f9f8a3409d2f40e900847527849 to your computer and use it in GitHub Desktop.
git - fetch & pull all
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