bundle_r_package {git2r} | R Documentation |
Bundle bare repo of package
Description
Clone the package git repository as a bare repository to
pkg/inst/pkg.git
Usage
bundle_r_package(repo = ".")
Arguments
repo |
a path to a repository or a |
Value
Invisible bundled git_repository
object
Examples
## Not run:
## Initialize repository
path <- tempfile()
dir.create(path)
path <- file.path(path, "git2r")
repo <- clone("https://github.com/ropensci/git2r.git", path)
## Bundle bare repository in package
bundle_r_package(repo)
## Build and install bundled package
wd <- setwd(dirname(path))
system(sprintf("R CMD build %s", path))
pkg <- list.files(".", pattern = "[.]tar[.]gz$")
system(sprintf("R CMD INSTALL %s", pkg))
setwd(wd)
## Reload package
detach("package:git2r", unload = TRUE)
library(git2r)
## Summarize last five commits of bundled repo
repo <- repository(system.file("git2r.git", package = "git2r"))
invisible(lapply(commits(repo, n = 5), summary))
## Plot content of bundled repo
plot(repo)
## End(Not run)
[Package git2r version 0.33.0 Index]