First of all this section is only for the paid users of Divjoy project users. While you are most certainly welcome to go ahead and download a starter template from Divjoy, the following steps show our version of the template which is only slightly modified so it works out of the box and can be deployed readily on Vercel.
We will use a mirror clone of a bare project to clone a private repo to your own project.
git clone --bare https://github.com/onweb-city/divjoy-bootstrap-starter.git
cd divjoy-bootstrap-starter.git
git push --mirror https://github.com/onweb-city/premium-courses.git
A few things to note in the above usage.
- Note the use
--bare
flag while cloning. - Note we are changing directory into
<...>.git
. - Note the use of flag --mirror while pushing.