Home > Blockchain >  How to move code from google cloud source repositories to github enterprise along with existing vers
How to move code from google cloud source repositories to github enterprise along with existing vers

Time:12-16

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 ?

CodePudding user response:

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)
  • Related