Created
October 23, 2012 15:41
-
-
Save amatsuda/3939551 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/zsh | |
| for b in `git branch -r | grep "^ origin" | cut -c 10- | fgrep -v HEAD | grep -v master`; do | |
| git checkout -t origin/${b} | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment