欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Ruby实现的删除已经合并的git分支脚本分享

程序员文章站 2023-02-17 11:31:04
使用git管理代码工程,着实方便了很多,但是当做完feature分支或者完成hotfix之后,总是忘记删除这些无用的分支,一个一个地删除着实麻烦,重复手工劳动不符合程序员的...

使用git管理代码工程,着实方便了很多,但是当做完feature分支或者完成hotfix之后,总是忘记删除这些无用的分支,一个一个地删除着实麻烦,重复手工劳动不符合程序员的风格,于是写了一个简单的脚本。一键删除那些不需要的分支,让多余的干扰信息离开视线。

删除哪些分支?

删除的为merge(合并)操作的源分支。如果工程正在处于分支a(head为a分支),分支b已经合并到了分支a,即a分支包含了b分支的内容,则会删除b分支。

代码

复制代码 代码如下:

#!/usr/bin/env ruby
# encoding: utf-8
exceptbranches = ['master', 'pre', 'develop']
for branch in `cd #{argv[0]} && git branch -l`.split(' ') - ['*']
    next if exceptbranches.include? branch
    system("git branch -d #{branch}")
end

使用方法

复制代码 代码如下:

ruby removemergedbranches.rb your_git_project

执行结果

执行结果类似如下,注意如果没有进行合并,则会提示警告或者错误,这些可以忽略。

复制代码 代码如下:

warning: deleting branch 'custom' that has been merged to
         'refs/remotes/origin/custom', but not yet merged to head.
deleted branch custom (was b63ab7d).
deleted branch hotfix (was 340cca0).
deleted branch mgit (was 86b4004).
error: the branch 'develop_rtl' is not fully merged.
if you are sure you want to delete it, run 'git branch -d develop_rtl'.