| install_svn {devtools} | R Documentation |
This function requires svn to be installed on your system in order to
be used.
install_svn(url, subdir = NULL, branch = NULL, args = character(0), ..., revision = NULL, quiet = FALSE)
url |
Location of package. The url should point to a public or private repository. |
subdir |
A sub-directory withing a svn repository that may contain the package we are interested in installing. By default, this points to the 'trunk' directory. |
branch |
Name of branch or tag to use, if not trunk. |
args |
A character vector providing extra arguments to pass on to |
... |
Other arguments passed on to |
revision |
svn revision, if omitted updates to latest |
quiet |
if |
It is vectorised so you can install multiple packages with a single command.
Other package installation: install_bioc,
install_bitbucket,
install_cran, install_github,
install_git, install_url,
install_version, install,
uninstall
## Not run:
install_svn("https://github.com/hadley/stringr")
install_svn("https://github.com/hadley/httr", branch = "oauth")
## End(Not run)