Function: hypb:grep-git-log

hypb:grep-git-log is an interactive and byte-compiled function defined in hypb.el.

Signature

(hypb:grep-git-log REGEXP)

Documentation

List git log entries whose changesets include REGEXP for selection and display.

Listing is asynchronous. A press of RET, the Action Key or the Assist Key on any log line will display its committed changes.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hypb.el
(defun hypb:grep-git-log (regexp)
  "List git log entries whose changesets include REGEXP for selection and display.
Listing is asynchronous.  A press of RET, the Action Key or the
Assist Key on any log line will display its committed changes."
  (interactive "sGrep git commits containing: ")
  (compile (format "git log -G'%s' --line-prefix='commit ' --oneline" regexp)))