将一个仓库复制/迁移到新的仓库。目标将sst复制到copy-store
2.1前提新旧两个仓库都能正常访问
2.2首先,将旧仓库的代码资源clone到本地
git clone https://gitee.com/hujb01/sst.git(仓库地址仅仅是示例)
2.3进入本地仓库添加远程仓库地址
git remote add origin0 https://gitee.com/hujb01/copy-store.git(仓库地址仅仅是示例)
你会看到两个仓库信息,如下图:
仓库的分支信息
2.4将代码资源放到新仓库
git push -u origin0 master/uat等
2.5操作完成,检查推送是否完成