Skip to content

Instantly share code, notes, and snippets.

@timrauhut
Created May 6, 2011 14:03
Show Gist options
  • Save timrauhut/959004 to your computer and use it in GitHub Desktop.
Save timrauhut/959004 to your computer and use it in GitHub Desktop.
Fast remote branch copying
#!/bin/bash
for branch in `git branch -a | grep remotes | grep -v HEAD | grep -v master`; do
git branch --track ${branch##*/} $branch
done
#!/bin/bash
for branch in `git branch -l | grep -v master`; do
git push mirror $branch
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment