Openedx devstack installation

1.6k Views Asked by At

Instructions of openedx devstack installation

I'm trying to install the openedx hawthorn release on my Mac. I followed the instructions, but when I ran make dev.clone, it gave me the error below:

fatal: not a git repository (or any of the parent directories): .git

make: *** [Makefile:41: dev.clone] Error 128

My command line

Any suggestions on how to resolve this issue?

2

There are 2 best solutions below

1
On

you can try the below command

make dev.clone.https

When you try to make dev.clone by default it uses ssh to clone the repository. In windows using ssh for git clone gives the error. So try using https for git clone.

0
On

after step 2,

edit the repo.sh file on line 93 like this:

cd $name git checkout open-release/${OPENEDX_RELEASE} cd ..

You need to add 1 & 3 line. And then follow further steps.