#!/usr/bin/env python3 """ Builds integration branches. Something similar to $ git checkout -b branch-name $ for b in $(get-branches-from-github) ; do > git pull b > done Requires either `~/.github_token` containing ONLY the token OR adding an entry like the following to `~/.netrc`: ``` machine github.com password ghp_E7ln0tAR34LtoK3nIsw34RyTve2moM3BvK ``` Usage: build-integration-branch