zoukankan      html  css  js  c++  java
  • Gitlab项目迁移

    • 开发的时候通常会有个基础版的项目代码,新开项目时可以以基础版进行开发。 然而在gitlab上不能直接以基础版的仓库来新建项目,所以需要我们通过命令行方式进行操作。  

      1.下载原有gitlab源码


         git clone http://gitlab.**.com/projectName


        2. gitlab地址替换成为新gitlab地址


         git remote set-url origin http://gitlab.**.com/newProjectName


         3.本地推送到远程-可以在sourceTree中进行推送


         git push origin --all 推送主干和分支
         git push --tags 推送标签


         4.查看远程gitlab地址


         git remote -v


         5.master版本回退


         将master分支移除protected分支
         git reset --hard 版本号 或者 sourceTree选择’将master重置到本次提交’,选择‘强行合并’
         git push -u origin master -f

      还可以通过镜像的方式迁移

         1.克隆老项目的镜像


         git clone --mirror old.git (old.git 为老项目的git地址)


         2.进入项目目录


         cd old.git


         3.老项目的地址替换成新项目


         git remote set-url --push origin new.git (new.git 为新项目的git地址)


         4.将镜像推到远程

      git push origin --all 推送主干和分支
         git push --tags 推送标签

  • 相关阅读:
    汉诺塔
    美丽联合2018前端
    游览器
    python多线程实现
    cuda toolkit
    编译器,解释器及混合编译
    大疆无人机
    SaaS PaaS IaaS mes
    CNN中权值共享的理解
    最近动作项目心得
  • 原文地址:https://www.cnblogs.com/zhouyun-yx/p/10448999.html
Copyright © 2011-2022 走看看