method

contains?

contains?(commit)
public

No documentation available.

# File lib/bundler/source/git/git_proxy.rb, line 78
        def contains?(commit)
          allowed_in_path do
            result = git_null("branch --contains #{commit}")
            $? == 0 && result =~ /^\* (.*)$/
          end
        end