Files
brew/Library/Homebrew/utils/git.rb
T

227 lines
7.8 KiB
Ruby

# typed: strict
# frozen_string_literal: true
require "system_command"
require "utils/path"
module Utils
# Helper functions for querying Git information.
#
# @see GitRepository
module Git
extend SystemCommand::Mixin
sig { returns(T::Boolean) }
def self.available?
!version.null?
end
sig { returns(T::Hash[String, String]) }
def self.no_global_config_env
{ "GIT_CONFIG_GLOBAL" => no_global_config_file }
end
sig { returns(String) }
def self.no_global_config_file
File::NULL
end
sig { returns(Version) }
def self.version
@version ||= T.let(begin
stdout, _, status = system_command(git, args: ["--version"], env: no_global_config_env,
verbose: false, print_stderr: false).to_a
version_str = status.success? ? stdout.chomp[/git version (\d+(?:\.\d+)*)/, 1] : nil
version_str.nil? ? Version::NULL : Version.new(version_str)
end, T.nilable(Version))
end
sig { returns(T.nilable(String)) }
def self.path
return unless available?
return @path if defined?(@path)
@path = T.let(Utils.popen_read(git, "--homebrew=print-path").chomp.presence, T.nilable(String))
end
sig { returns(Pathname) }
def self.git
@git ||= T.let(HOMEBREW_SHIMS_PATH/"shared/git", T.nilable(Pathname))
end
sig { params(url: String).returns(T::Boolean) }
def self.remote_exists?(url)
return true unless available?
quiet_system "git", "ls-remote", url
end
sig { void }
def self.clear_available_cache
remove_instance_variable(:@version) if defined?(@version)
remove_instance_variable(:@path) if defined?(@path)
remove_instance_variable(:@git) if defined?(@git)
end
sig {
params(repo: T.any(Pathname, String), file: T.any(Pathname, String),
before_commit: T.nilable(String)).returns(String)
}
def self.last_revision_commit_of_file(repo, file, before_commit: nil)
args = if before_commit.nil?
["--skip=1"]
else
[before_commit.split("..").first]
end
Utils.popen_read(git, "-C", repo, "log", "--format=%h", "--abbrev=7", "--max-count=1", *args, "--", file).chomp
end
sig {
params(
repo: T.any(Pathname, String),
files: T::Array[T.any(Pathname, String)],
before_commit: T.nilable(String),
).returns([T.nilable(String), T::Array[String]])
}
def self.last_revision_commit_of_files(repo, files, before_commit: nil)
args = if before_commit.nil?
["--skip=1"]
else
[before_commit.split("..").first]
end
# git log output format:
# <commit_hash>
# <file_path1>
# <file_path2>
# ...
# return [<commit_hash>, [file_path1, file_path2, ...]]
rev, *paths = Utils.popen_read(
git, "-C", repo, "log",
"--pretty=format:%h", "--abbrev=7", "--max-count=1",
"--diff-filter=d", "--name-only", *args, "--", *files
).lines.map(&:chomp).reject(&:empty?)
[rev, paths]
end
sig {
params(repo: T.any(Pathname, String), file: T.any(Pathname, String), before_commit: T.nilable(String))
.returns(String)
}
def self.last_revision_of_file(repo, file, before_commit: nil)
relative_file = Pathname(file).relative_path_from(repo)
commit_hash = last_revision_commit_of_file(repo, relative_file, before_commit:)
file_at_commit(repo, file, commit_hash)
end
sig { params(repo: T.any(Pathname, String), file: T.any(Pathname, String), commit: String).returns(String) }
def self.file_at_commit(repo, file, commit)
relative_file = Pathname(file)
relative_file = relative_file.relative_path_from(repo) if relative_file.absolute?
Utils.popen_read(git, "-C", repo, "show", "#{commit}:#{relative_file}")
end
# The paths (relative to `repository`'s root) changed in its working tree
# since it diverged from the upstream default branch. The base is the
# `origin/HEAD` merge-base rather than the local default branch ref, which
# is often stale (e.g. in worktrees and freshly-cloned taps); it falls back
# to `main` when `origin/HEAD` is unavailable.
sig { params(repository: T.any(Pathname, String)).returns(T::Array[String]) }
def self.changed_files(repository)
base_ref = Utils.popen_read(git, "-C", repository, "merge-base", "origin/HEAD", "HEAD").chomp.presence
base_ref ||= "main"
Utils.popen_read(git, "-C", repository, "diff", "--name-only", "--no-relative", base_ref).split("\n")
end
sig { void }
def self.ensure_installed!
return if available?
# we cannot install brewed git if homebrew/core is unavailable.
if CoreTap.instance.installed?
begin
# Otherwise `git` will be installed from source in tests that need it. This is slow
# and will also likely fail due to `OS::Linux` and `OS::Mac` being undefined.
raise "Refusing to install Git on a generic OS." if ENV["HOMEBREW_TEST_GENERIC_OS"]
require "formula"
Formula["git"].ensure_installed!(executable: "git")
clear_available_cache
rescue
raise "Git is unavailable"
end
end
raise "Git is unavailable" unless available?
end
sig { params(author: T::Boolean, committer: T::Boolean).void }
def self.set_name_email!(author: true, committer: true)
if Homebrew::EnvConfig.git_name
ENV["GIT_AUTHOR_NAME"] = Homebrew::EnvConfig.git_name if author
ENV["GIT_COMMITTER_NAME"] = Homebrew::EnvConfig.git_name if committer
end
if Homebrew::EnvConfig.git_committer_name && committer
ENV["GIT_COMMITTER_NAME"] = Homebrew::EnvConfig.git_committer_name
end
if Homebrew::EnvConfig.git_email
ENV["GIT_AUTHOR_EMAIL"] = Homebrew::EnvConfig.git_email if author
ENV["GIT_COMMITTER_EMAIL"] = Homebrew::EnvConfig.git_email if committer
end
return unless committer
return unless Homebrew::EnvConfig.git_committer_email
ENV["GIT_COMMITTER_EMAIL"] = Homebrew::EnvConfig.git_committer_email
end
sig { void }
def self.setup_gpg!
gnupg_bin = Utils::Path.formula_opt_bin("gnupg")
return unless gnupg_bin.directory?
ENV["PATH"] = PATH.new(ENV.fetch("PATH")).prepend(gnupg_bin).to_s
end
# Special case of `git cherry-pick` that permits non-verbose output and
# optional resolution on merge conflict.
sig { params(repo: T.any(Pathname, String), args: String, resolve: T::Boolean, verbose: T::Boolean).returns(String) }
def self.cherry_pick!(repo, *args, resolve: false, verbose: false)
cmd = [git.to_s, "-C", repo, "cherry-pick"] + args
output = Utils.popen_read(*cmd, err: :out)
if $CHILD_STATUS.success?
puts output if verbose
output
else
system git.to_s, "-C", repo.to_s, "cherry-pick", "--abort" unless resolve
raise ErrorDuringExecution.new(cmd, status: $CHILD_STATUS, output: [[:stdout, output]])
end
end
sig { returns(T::Boolean) }
def self.supports_partial_clone_sparse_checkout?
# There is some support for partial clones prior to 2.20, but we avoid using it
# due to performance issues
version >= Version.new("2.20.0")
end
sig {
params(repository_path: T.nilable(Pathname), person: String, from: T.nilable(String),
to: T.nilable(String)).returns(Integer)
}
def self.count_coauthors(repository_path, person, from:, to:)
return 0 unless repository_path
cmd = [git.to_s, "-C", repository_path.to_s, "log", "--oneline"]
cmd << "--format='%(trailers:key=Co-authored-by:)''"
cmd << "--before=#{to}" if to
cmd << "--after=#{from}" if from
Utils.safe_popen_read(*cmd).lines.count { |l| l.include?(person) }
end
end
end