show,git_reference-method {git2r} | R Documentation |
Brief summary of reference
## S4 method for signature 'git_reference' show(object)
object |
The reference |
None (invisible 'NULL').
## Not run: ## Create and initialize a repository in a temporary directory path <- tempfile(pattern="git2r-") dir.create(path) repo <- init(path) config(repo, user.name="Alice", user.email="alice@example.org") ## Create a file, add and commit writeLines("Hello world!", file.path(path, "example.txt")) add(repo, "example.txt") commit(repo, "First commit message") ## Brief summary of reference references(repo)[[1]] ## End(Not run)