Last active
August 29, 2015 14:26
-
-
Save ko2ic/123a7aa541262a9bf9a1 to your computer and use it in GitHub Desktop.
すべてのブランチをcloneするスクリプト
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
for i in `git branch -r | grep -v HEAD | grep -v master | sed 's:origin/::g'` | |
do | |
git checkout --track -b $i origin/$i | |
done | |
git checkout master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
curl https://gist.githubusercontent.com/ko2ic/123a7aa541262a9bf9a1/raw/580465d8bf9b5995638713d929a136e9725b73ce/git_clone_all_branch.sh | sh