Git 批量修改分支名字模板

新建文件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 批量修改分支名字模板)