Unlink from github when cloning an App

When I clone an application, its link to GitHub is also cloned. How can I remove that link and link to a new repository? The clone option should not clone the GitHub configuration, and/or it should be possible to remove the link. Is there anything I can do at present?

Current workaround:

  1. Download the project as a zip file
  2. Create a new project in AI Studio from a blank template
  3. In code tab, upload the dowloaded zip file
  4. Preview the project
  5. Save the app
  6. Link to github
1 Like

Hi @IA_Acceleralia
Welcome to the AI Forum!!!

Thank you for reaching out to us.
To remove your project from the existing GitHub repository, please run the following command: git remote remove origin
And if you want to connect your project to a new repository, please run the following command: git remote add origin [URL] replace [URL] with the URL of your new repository.

1 Like