Gravatar

Hi, in readme file you say: $ git clone -o light-blue-html5 -b master --single-branch \ https://github.com/flatlogic/light-blue-html5.git MyApp

however I get this error. fatal: repository 'https://github.com/flatlogic/light-blue-html5.git/' not found

User profile image

Hi,

If you already have the readme file, it likely means you also have access to the code. In this case, you can skip the step that involves cloning the repository.

User profile image

Hey there!

It looks like you’re running into an issue with the git clone command. The error you’re seeing usually happens when the repository URL is incorrect or the repository is no longer available.

First, make sure the URL is correct. Based on the error message, it seems like the repository might not exist at the link you’re using. Try double-checking the repository URL or confirming if it's been moved or deleted.

If you’re sure the URL should be correct and the repository is available, you could also try cloning without specifying the -o or -b options:

bash https://github.com/flatlogic/light-blue-html5.git This will clone the entire repository and set up your project folder named MyApp.

Hope that helps! Let me know if the issue persists or if there’s anything else I can do to assist.