Method: Git::Lib#full_log_commits
- Defined in:
- lib/git/lib.rb
#full_log_commits(opts = {}) ⇒ Array<Hash>
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Return the commits that are within the given revision range
355 356 357 358 359 360 361 362 363 364 365 |
# File 'lib/git/lib.rb', line 355 def full_log_commits(opts = {}) ('between', opts[:between]&.first) ('object', opts[:object]) args = (opts) args += build_args(opts, FULL_LOG_EXTRA_OPTIONS_MAP) args += (opts) full_log = command_lines('log', *args) process_commit_log_data(full_log) end |