brew/Library/Homebrew/utils/git_repository.rb
Douglas Eichelberger 24cf6076e8 brew style --fix
2023-04-24 20:42:39 -07:00

54 lines
1.5 KiB
Ruby

# typed: strict
# frozen_string_literal: true
module Utils
# Gets the full commit hash of the HEAD commit.
sig {
params(
repo: T.any(String, Pathname),
length: T.nilable(Integer),
safe: T::Boolean,
).returns(T.nilable(String))
}
def self.git_head(repo = Pathname.pwd, length: nil, safe: true)
return git_short_head(repo, length: length) if length
GitRepository.new(Pathname(repo)).head_ref(safe: safe)
end
# Gets a short commit hash of the HEAD commit.
sig {
params(
repo: T.any(String, Pathname),
length: T.nilable(Integer),
safe: T::Boolean,
).returns(T.nilable(String))
}
def self.git_short_head(repo = Pathname.pwd, length: nil, safe: true)
GitRepository.new(Pathname(repo)).short_head_ref(length: length, safe: safe)
end
# Gets the name of the currently checked-out branch, or HEAD if the repository is in a detached HEAD state.
sig {
params(
repo: T.any(String, Pathname),
safe: T::Boolean,
).returns(T.nilable(String))
}
def self.git_branch(repo = Pathname.pwd, safe: true)
GitRepository.new(Pathname(repo)).branch_name(safe: safe)
end
# Gets the full commit message of the specified commit, or of the HEAD commit if unspecified.
sig {
params(
repo: T.any(String, Pathname),
commit: String,
safe: T::Boolean,
).returns(T.nilable(String))
}
def self.git_commit_message(repo = Pathname.pwd, commit: "HEAD", safe: true)
GitRepository.new(Pathname(repo)).commit_message(commit, safe: safe)
end
end