Last active
February 16, 2017 05:19
-
-
Save wifecooky/f77894473a86b3fa78b1f8b7a8213e7d to your computer and use it in GitHub Desktop.
GIT関連
This file contains 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/bash | |
# git の remote branch をすべてローカルに clone する | |
# git clone all remote branches locally | |
# https://coderwall.com/p/0ypmka/git-clone-all-remote-branches-locally | |
for branch in `git branch -a | grep remotes | grep -v HEAD | grep -v master `; do | |
git branch --track ${branch#remotes/origin/} $branch | |
done |
This file contains 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment