Added a little documentation to the log functions.

This commit is contained in:
Phil Jackson 2010-06-01 16:46:53 +01:00
parent 961e8c94c0
commit 4b23df61f5

View file

@ -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))