Skip to content

Instantly share code, notes, and snippets.

@iluwatar
Last active August 29, 2015 14:15
Show Gist options
  • Save iluwatar/fac18d5ada9216ff13c4 to your computer and use it in GitHub Desktop.
Save iluwatar/fac18d5ada9216ff13c4 to your computer and use it in GitHub Desktop.
git_deep_clone_repository
cd <work dir>
git clone <src repository url>
cd <work dir>/<src repository>
for branch in `git branch -a | grep remotes | grep -v HEAD | grep -v master`; do
git branch --track ${branch##*/} $branch
done
git remote rm origin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment