美文网首页
coding/gitee批量迁移代码到gitlab的批处理文件

coding/gitee批量迁移代码到gitlab的批处理文件

作者: 回眸淡然笑 | 来源:发表于2019-11-26 16:49 被阅读0次

    @echo off
    cd wdjy
    setlocal enabledelayedexpansion
    for %%N in (项目1,项目2,项目3) do (
    git clone --mirror https://e.coding.net/iwdjy/%%N.git
    cd %%N.git
    git remote set-url --push origin git@gitlab_root:root/%%N.git
    git push --mirror
    cd ../
    )
    pause

    相关文章

      网友评论

          本文标题:coding/gitee批量迁移代码到gitlab的批处理文件

          本文链接:https://www.haomeiwen.com/subject/ryuzectx.html