方法一:
直接切换到git项目下
git push --mirror https://gitee.com/stup/xx.git
--mirror
参数将会把裸仓库中的所有引用(branches, tags, remotes)全部推送到新的远程仓库。
方法二:
1. 在目标位置使用命令行或使用图形界面工具,克隆原始仓库到本地,
git clone <原始仓库地址>
2. 进入克隆的本地仓库目录,将新的远程仓库作为目标仓库,
git remote set-url origin <新远程仓库地址>
3. 将本地代码推送到新的远程仓库,
git push origin main 或者 master