| coerce-git_tree-data.frame-method {git2r} | R Documentation |
data.frameThe entries in a tree are coerced to a data.frame
from |
The tree |
The data.frame have the following columns:
The UNIX file attributes of a tree entry
String representation of the tree entry type
The sha of a tree entry
The filename of a tree entry
data.frame
## Not run:
## Initialize a temporary repository
path <- tempfile(pattern="git2r-")
dir.create(path)
dir.create(file.path(path, "subfolder"))
repo <- init(path)
## Create a user
config(repo, user.name="Alice", user.email="alice@example.org")
## Create three files and commit
writeLines("First file", file.path(path, "example-1.txt"))
writeLines("Second file", file.path(path, "subfolder/example-2.txt"))
writeLines("Third file", file.path(path, "example-3.txt"))
add(repo, c("example-1.txt", "subfolder/example-2.txt", "example-3.txt"))
new_commit <- commit(repo, "Commit message")
## Coerce tree to a data.frame
df <- as(tree(new_commit), "data.frame")
df
## End(Not run)