
Last chance! 50% off unlimited learning
Sale ends in
Summary of tree
# S3 method for git_tree
summary(object, ...)
None (invisible 'NULL').
The tree object
Additional arguments affecting the summary produced.
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