summary.git_repository | R Documentation |
Summary of repository
## S3 method for class 'git_repository'
summary(object, ...)
object |
The repository |
... |
Additional arguments affecting the summary produced. |
None (invisible 'NULL').
## 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")
## Create a file
writeLines("Hello world!", file.path(path, "test.txt"))
summary(repo)
## Add file
add(repo, "test.txt")
summary(repo)
## Commit
commit(repo, "First commit message")
summary(repo)
## Change the file
writeLines(c("Hello again!", "Here is a second line", "And a third"),
file.path(path, "test.txt"))
summary(repo)
## Add file and commit
add(repo, "test.txt")
commit(repo, "Second commit message")
summary(repo)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.