Skip to content

Instantly share code, notes, and snippets.

@ko2ic
Last active August 29, 2015 14:26
Show Gist options
  • Save ko2ic/123a7aa541262a9bf9a1 to your computer and use it in GitHub Desktop.
Save ko2ic/123a7aa541262a9bf9a1 to your computer and use it in GitHub Desktop.
すべてのブランチをcloneするスクリプト
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