Added a little documentation to the log functions.
This commit is contained in:
parent
961e8c94c0
commit
4b23df61f5
1 changed files with 4 additions and 0 deletions
4
magit.el
4
magit.el
|
@ -3545,14 +3545,18 @@ With a non numeric prefix ARG, show all entries"
|
|||
(magit-log-mode t)))
|
||||
|
||||
(defun magit-log-all (&optional arg)
|
||||
"Display the state of all refs in the log output."
|
||||
(interactive "P")
|
||||
(magit-display-log arg "--all"))
|
||||
|
||||
(defun magit-log-first-parent (&optional arg)
|
||||
"Display the log buffer excluding anything more than first
|
||||
level commits."
|
||||
(interactive "P")
|
||||
(magit-display-log arg "--first-parent"))
|
||||
|
||||
(defun magit-log (&optional arg)
|
||||
"View and act upon the output of git log."
|
||||
(interactive "P")
|
||||
(magit-display-log arg))
|
||||
|
||||
|
|
Loading…
Reference in a new issue