Reputation: 71
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
Any suggestions on how to resolve this issue?
Upvotes: 5
Views: 1669
Reputation: 41
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.
Upvotes: 4
Reputation: 1712
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.
Upvotes: 8