Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View leogaggl's full-sized avatar

Leo Gaggl leogaggl

View GitHub Profile
@leogaggl
leogaggl / cloneall.sh
Created April 10, 2019 10:43 — forked from potter0815/cloneall.sh
clone all private repos of an organization
#!/bin/bash
#requires jq -> http://stedolan.github.io/jq/
#optional change working_dir
working_dir=${1-$(pwd)}
cd $working_dir
user="github_username"
token="application token"
organization="Organization_Name"