git2r (version 0.10.1)

summary,git_commit-method: Summary of commit

Description

Summary of commit

Usage

## S3 method for class 'git_commit':
summary(object, ...)

Arguments

object
The commit object
...
Additional arguments affecting the summary produced.

Value

  • None (invisible 'NULL').

Examples

Run this code
## 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]])

Run the code above in your browser using DataLab