odb_objects {git2r} | R Documentation |
List all objects available in the database
odb_objects(repo = ".")
repo |
a path to a repository or a |
A data.frame with the following columns:
The sha of the object
The type of the object
The length of the object
## Not run: ## Create a directory in tempdir path <- tempfile(pattern="git2r-") dir.create(path) ## Initialize a repository repo <- init(path) config(repo, user.name = "Alice", user.email = "alice@example.org") ## Create a file, add and commit lines <- "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do" writeLines(lines, file.path(path, "test.txt")) add(repo, "test.txt") commit(repo, "Commit message 1") ## Create tag tag(repo, "Tagname", "Tag message") ## List objects in repository odb_objects(repo) ## End(Not run)