美文网首页
批量处理文件迁移

批量处理文件迁移

作者: Mr_不靠谱_先森 | 来源:发表于2019-04-03 14:51 被阅读0次

    批量迁移(使用shell脚本)

    • 新建一个文件用于需要迁移的项目名称及路径
    • 编写脚本用与批量处理git镜像命令
    #/bin/bash
    cat a.txt | while read line
    do
       echo $line
    git clone --mirror old.git(旧的仓库地址路径这里只需要根路径,从文件读取项目名称即可)/$line
    cd $line 
    git remote set-url --push origin new.git(新仓库路径)/$line
    git push --mirror new.git(新仓库路径)/$line
    cd ..
    done
    
    

    相关文章

      网友评论

          本文标题:批量处理文件迁移

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