关于git如何将老仓库中的分支迁移到新仓库中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于git如何将老仓库中的分支迁移到新仓库中相关的知识,希望对你有一定的参考价值。
参考技术A 前期准备:老地址: https://gitee.com/fengxiangongye/occupation_campus_front_end
新地址: https://gitee.com/church_experimental_school/portal-vue
1.进入git_test根目录(可以执行git命令的话,就证明进入了git_test根目录。)
2.查看项目目前的git地址 git remote -v
git remote-v
origin https://gitee.com/fengxiangongye/occupation_campus_front_end (fetch)
origin https://gitee.com/fengxiangongye/occupation_campus_front_end (push)
3.重新设置git的新地址 git remote set-url origin https://gitee.com/church_experimental_school/portal-vue
git remote set-url origin https://gitee.com/church_experimental_school/portal-vue
4.验证项目目前的git地址git remote -v
git remote-v
origin https://gitee.com/church_experimental_school/portal-vue (fetch)
origin https://gitee.com/church_experimental_school/portal-vue (push)
5.将项目上传到git上
git push -u origin --all
git push -u origin --tags完成。但需要注意git分支,新上传项目的分支只会保留本地的,之前的远程分支不存在。
或者:使用idea
1.
2.
以上是关于关于git如何将老仓库中的分支迁移到新仓库中的主要内容,如果未能解决你的问题,请参考以下文章