Hi All, π
Thanks for purchasing our templates and being our valued customer. π
Based on the development community and ease of use for our customers, we have finally migrated from GitLab to GitHub. π
π How did this decision impact me?
βIt may be possible that you have currently cloned/forked our stale GitLab repo. You need to fill out this access form to get GitHub repo access and clone the repo.
βWe have disabled forking our GitHub repo.
π’ Announcements
- We have migrated all repos from GitLab to GitHub.
- Each Framework / Technology will have its own repo. (e.g.: Vuexy HTML & Vuexy HTML+ Laravel will be in separate repos)
- Only users with active support can have access to our GitHub repos.
- Repo access will be revoked on support expiry.
- Forking our GitHub repo is disabled
π Why forking is disabled?
You will lose repository access when your support expires. If you have forked the repo and you lose access to our repo then your fork also got deleted by GitHub.
Hence, as precautions, we disabled forking our repo.
Solution
However, you can still keep your repo even after your support expires by setting our repo as upstream:
- Create a new private repo in your GitHub. Make sure it’s a private repo. You can’t share our code publically as per license.
- Clone our repo:
git clone $product_repo_url
- Navigate to the cloned directory
- Remove our repo as origin by running the command:
git remote remove origin
- Add your newly created repo as origin by running command:
git remote add origin YOUR_NEWLY_CREATE_REPO_GIT_URL
- Add our repo as upstream by running the command:
git remote add upstream $product_repo_url
- Push the code to GitHub by running the command:
git push -u origin main
Now, whenever you want to pull the latest changes from our repo just pull the changes by running the command: git pull upstream main
Happy Coding
Cheers π₯