Usage
git_log(n = 10, oneline = TRUE)
Arguments
- n
Number of commits to show. Default is 10.
- oneline
Logical. Whether to show each commit on one line. Default is TRUE.
Value
Character vector containing log output
Examples
if (FALSE) { # \dontrun{
git_log()
git_log(n = 20, oneline = FALSE) # detailed log
} # }