Learn R Programming

git2r (version 0.35.0)

summary.git_tree: Summary of tree

Description

Summary of tree

Usage

# S3 method for git_tree
summary(object, ...)

Value

None (invisible 'NULL').

Arguments

object

The tree object

...

Additional arguments affecting the summary produced.

Examples

Run this code
if (FALSE) {
## Initialize a temporary repository
path <- tempfile(pattern="git2r-")
dir.create(path)
repo <- init(path)

## Create a user and commit a file
config(repo, user.name = "Alice", user.email = "alice@example.org")
writeLines("Hello world!", file.path(path, "example.txt"))
add(repo, "example.txt")
commit(repo, "First commit message")

summary(tree(last_commit(repo)))
}

Run the code above in your browser using DataLab