美文网首页
Git 批量修改分支名字模板

Git 批量修改分支名字模板

作者: 枫枫大世界 | 来源:发表于2018-04-08 23:44 被阅读34次

    新建文件multi-git.sh,输入以下代码:

    #!/bin/bash
    
    git fetch
    a=$(git branch -r |grep 'TestFlight/engineeringtool_1.0_1')
    
    for i in ${a}
    do
        echo $i
        i=`echo ${i#*/}`
        echo $i
        git checkout $i
        # git branch 
        git push --delete origin $i
        originName=`echo $i | tr '[:upper:]' '[:lower:]' `
        echo $originName
        #重命名这一块儿应该用一句就可以了,但是实在是困了。。。。就不验证了,谁验证了,告诉我一声
        tempPrex="temp"
        tempBranchName=`echo ${tempPrex}${originName}`
        git branch -m $i $tempBranchName
        git branch -m $tempBranchName $originName
        git checkout $originName
        #提交新分支,删除本地分支
        git push --force origin $originName
        git branch -D $originName
    done
    git branch |grep 'TestFlight/engineeringtool_1.0_1' |xargs git branch -D
    

    修改自己的匹配模板,替换TestFlight/engineeringtool_1.0_1。
    保存,退出。
    将该文件拷贝到项目目录下(Git 目录),运行 sh multi-git.sh。
    完工。

    相关文章

      网友评论

          本文标题:Git 批量修改分支名字模板

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