## S3 method for class 'git_repository'summary(object,...)
Arguments
object: The repository object
...: Additional arguments affecting the summary produced.
Returns
None (invisible 'NULL').
Examples
## Not run:## Initialize a repositorypath <- tempfile(pattern="git2r-")dir.create(path)repo <- init(path)## Config userconfig(repo, user.name ="Alice", user.email ="alice@example.org")## Create a filewriteLines("Hello world!", file.path(path,"test.txt"))summary(repo)## Add fileadd(repo,"test.txt")summary(repo)## Commitcommit(repo,"First commit message")summary(repo)## Change the filewriteLines(c("Hello again!","Here is a second line","And a third"), file.path(path,"test.txt"))summary(repo)## Add file and commitadd(repo,"test.txt")commit(repo,"Second commit message")summary(repo)## End(Not run)