Devtools git link not working

Done, thanks! However, there’s a bunch more pages to go like that… opening an internal ticket to have Sangoma documentation team help us out with the migration.

FWIW copying out all the repos over HTTP might be handy:

#!/bin/sh

url="https://github.com/orgs/FreePBX/repositories?page="

for page in 1 2 3 4; do
	wget -O - ${url}${page} | tr '"' '\n' | grep "^/FreePBX/" | cut -f3 -d'/' | sort -u | sed -e 's/^/https:\/\/github.com\/FreePBX\//' -e 's/$/.git/' | xargs -L 1 git clone
done

^^^ using that and a little more glue to run some stats for AstriCon presentation :slight_smile: