Last Updated: February 25, 2016
·
391
· _th3rapist

Clone all remote branches to local GIT

git branch -a | grep -v HEAD | perl -ne 'chomp($); s|^*?\s*||; if (m|(.+)/(.+)| && not $d{$2}) {print qq(git branch --track $2 $1/$2\n)} else {$d{$}=1}' | csh -xfs