我的“远程”服务器上有很多GIT分支。
这个答案非常好,但它并没有让我一路走来。 How can I delete all Git branches which have been merged?
您可以在合并中包含master / develop分支吗?如何在此添加时间间隔?
git branch -r --merged | grep -v master | sed 's/origin\///' | xargs -n 1 git push --delete origin
答案 0 :(得分:3)
您可以使用shell脚本删除早于一年的合并分支,并删除超过五个月的合并分支。
#!/bin/bash
tarBranch=$(git branch -r --no-merged | grep -v master | grep -v developer | sed 's/origin\///')
for branch in $tarBranch
do
echo $branch
lastDate=$(git show -s --format=%ci origin/$branch)
convertDate=$(echo $lastDate | cut -d' ' -f 1)
Todate=$(date -d "$convertDate" +'%s')
current=$(date +'%s')
day=$(( ( $current - $Todate )/60/60/24 ))
echo "last commit on $branch branch was $day days ago"
if [ "$day" -gt 365 ]; then
git push origin :$branch
echo "delete the old branch $branch"
fi
done
#!/bin/bash
git checkout master
#deleted merged branches on master branch
tarBranch=$(git branch -r --merged | grep -v master | grep -v develop | sed 's/origin\///')
for branch in $tarBranch
do
echo $branch
lastDate=$(git show -s --format=%ci origin/$branch)
convertDate=$(echo $lastDate | cut -d' ' -f 1)
Todate=$(date -d "$convertDate" +'%s')
current=$(date +'%s')
day=$(( ( $current - $Todate )/60/60/24 ))
echo "last commit on $branch branch was $day days ago"
if [ "$day" -gt 150 ]; then
git push origin :$branch
echo "delete the old branch $branch"
fi
done
git checkout develop
#deleted merged branches on developer branch
tarBranch=$(git branch -r --merged | grep -v master | grep -v develop | sed 's/origin\///')
for branch in $tarBranch
do
echo $branch
lastDate=$(git show -s --format=%ci origin/$branch)
convertDate=$(echo $lastDate | cut -d' ' -f 1)
Todate=$(date -d "$convertDate" +'%s')
current=$(date +'%s')
day=$(( ( $current - $Todate )/60/60/24 ))
echo "last commit on $branch branch was $day days ago"
if [ "$day" -gt 150 ]; then
git push origin :$branch
echo "delete the old branch $branch"
fi
done