summary,git_commit-method {git2r}R Documentation

Summary of commit

Description

Summary of commit

Usage

## S4 method for signature 'git_commit'
summary(object, ...)

Arguments

object

The commit object

...

Additional arguments affecting the summary produced.

Value

None (invisible 'NULL').

Examples

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

[Package git2r version 0.19.0 Index]