用ruby检查本地仓库中是否存在git分支?

发布于 2024-10-18 07:57:47 字数 80 浏览 1 评论 0原文

使用 ruby​​ 检查本地 git 存储库中是否存在 git 分支的最佳方法是什么?我的 Ruby 技能不太好,所以想知道最好的方法:) 谢谢。

What would be the best way of checking if git branch exists in the local git repository with ruby? My ruby skills are not that good, so would like to know the best way of going about it :) Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无所的.畏惧 2024-10-25 07:57:47

有一些用于访问 git 存储库的 ruby​​ 库,其中一个是 grit

要安装,请使用[sudo] gem install grit

$ irb
>> require 'grit'
=> true
>> repo = Grit::Repo.new('/path/to/your/repo/')
=> #<Grit::Repo "/path/to/your/repo/.git">
>> repo.branches
=> [#<Grit::Head "master">, #<Grit::Head "some-topic-branch">, ...]

There are ruby libraries for accessing git repositories, one being grit.

To install use [sudo] gem install grit.

$ irb
>> require 'grit'
=> true
>> repo = Grit::Repo.new('/path/to/your/repo/')
=> #<Grit::Repo "/path/to/your/repo/.git">
>> repo.branches
=> [#<Grit::Head "master">, #<Grit::Head "some-topic-branch">, ...]
叹梦 2024-10-25 07:57:47

我最终想出了这个:

# Check if a Branch Exists
def branch_exists(branch)
    branches = run("git branch",false)
    regex = Regexp.new('[\\n\\s\\*]+' + Regexp.escape(branch.to_s) + '\\n')
    result = ((branches =~ regex) ? true : false)
    return result
end

其中 run 是一个反引号表达式。原因是代码具有高度可移植性,并且不允许有任何其他依赖项。而环境中安装了git。

I ended up coming up with this:

# Check if a Branch Exists
def branch_exists(branch)
    branches = run("git branch",false)
    regex = Regexp.new('[\\n\\s\\*]+' + Regexp.escape(branch.to_s) + '\\n')
    result = ((branches =~ regex) ? true : false)
    return result
end

Where run is a backtick expression. The reasoning is that the code is to be highly portable and is not allowed any other dependencies. Whereas git is installed in the environment.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文