If you have a Git repository which is cloned from a Cloud Platform repository and you want to use the Cloud Platform Pipelines command-line client to switch to using GitHub as the source repository for the associated application, complete the following steps:
Ensure you have all the latest commits from the Cloud Platform repository by executing the following command:
git fetchRename the Cloud Platform remote repository from
originto your desired new name, such ascloud:git remote rename origin cloudAdd a new remote repository named
originfor the GitHub repository you want to use, replacing[USER]and[REPO]with the appropriate values:git remote add origin [email protected]:[USER]/[REPO].gitPush all branches from the repository to GitHub:
git push origin --all --forceRun the
pipelines github-connectcommand to associate this repository with your Cloud Platform application.