summary,git_commit-method {git2r} | R Documentation |
Summary of commit
## S4 method for signature 'git_commit' summary(object, ...)
object |
The commit |
... |
Additional arguments affecting the summary produced. |
None (invisible 'NULL').
## Not run: ## Initialize a repository path <- tempfile(pattern="git2r-") dir.create(path) repo <- init(path) ## Config user config(repo, user.name="Alice", user.email="alice@example.org") ## Write to a file and commit writeLines("Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do", file.path(path, "example.txt")) add(repo, "example.txt") commit(repo, "First commit message") ## Summary of commit in repository summary(commits(repo)[[1]]) ## End(Not run)