Devtools git link not working

The devtools no longer work on SNG7. The wiki

https://sangomakb.atlassian.net/wiki/spaces/FP/pages/10420868/Signing+your+own+modules#Toolkit

indicates that you should be able to run

git clone http://git.freepbx.org/scm/freepbx/devtools.git

which I have done many times before but now I receive an error message:

[root@bvg /usr/src]$ git clone http://git.freepbx.org/scm/freepbx/devtools.git
Cloning into 'devtools'...
fatal: http://git.freepbx.org/scm/freepbx/devtools.git/info/refs not valid: is this a git repository?

@kgupta @penguinpbx any advice here?

Devtools is at the GitHub repos.

Right they migrated. Yeah http://github.com/FreePBX/devtools.git worked. Wiki needs to be updated to reflect the change

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:

A post was split to a new topic: Documentation nostalgia

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.