class Github::Client::Repos::Commits
def compare(*args)
- Api: - public
Other tags:
- Note: - Both :base and :head can be either branch names in :repo or
def compare(*args) arguments(args, required: [:user, :repo, :base, :head]) get_request("/repos/#{arguments.user}/#{arguments.repo}/compare/#{arguments.base}...#{arguments.head}", arguments.params) end