Skip to content

Instantly share code, notes, and snippets.

@olzaragoza
Created August 23, 2016 05:27
Show Gist options
  • Save olzaragoza/69be7809b2dc3be2e78834fc0d4813be to your computer and use it in GitHub Desktop.
Save olzaragoza/69be7809b2dc3be2e78834fc0d4813be to your computer and use it in GitHub Desktop.
clone all branches locally
#!/bin/bash
for branch in `git branch -a | grep remotes | grep -v HEAD | grep -v master `; do
git branch --track ${branch#remotes/origin/} $branch
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment