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 ?
Asked
Active
Viewed 386 times
0
-
There's an existing issue for this that you can check [here](https://issuetracker.google.com/121117390) and update. – RJC Dec 13 '21 at 02:48
1 Answers
1
Used the following steps:
- git remote set-url origin <target_repo>
- git push -u origin
- git push --tags (To push the release versions)

Pthota
- 101
- 1
- 1
- 10