Skip to content

Instantly share code, notes, and snippets.

@melkorm
Last active August 29, 2015 14:07
Show Gist options
  • Save melkorm/9d3e3be7490d0f3c827e to your computer and use it in GitHub Desktop.
Save melkorm/9d3e3be7490d0f3c827e to your computer and use it in GitHub Desktop.
Sync all remote branches with other origin repository
#!/bin/sh
branches=`git branch -r`
for i in ${branches}; do
echo `git checkout -t $i`
done
echo `git push -u bitbucket --all`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment