clone all of your gists
grab a php shell with php -a $gists = json_decode(`curl -f -s https://api.github.com/users/qtrain/gists`); foreach($gists as $gist){ exec("git clone $gist->git_pull_url"); } echo "done!";