How to move code from google cloud source repositories to github enterprise along with existing versions

574 views Asked by At

We have the code in GCP source repo and would like to move it GitHub Enterprise. Is there any easiest way move code from google cloud source repositories to GitHub enterprise along with the existing release versions ?

1

There are 1 answers

0
Pthota On BEST ANSWER

Used the following steps:

  1. git remote set-url origin <target_repo>
  2. git push -u origin
  3. git push --tags (To push the release versions)