remotes (version 1.1.0)

install_svn: Install a package from a SVN repository

Description

This function requires svn to be installed on your system in order to be used.

Usage

install_svn(url, subdir = NULL, args = character(0), ..., revision = NULL)

Arguments

url

Location of package. The url should point to a public or private repository.

subdir

A sub-directory withing a svn repository that contains the package we are interested in installing.

args

A character vector providing extra options to pass on to svn.

...

Other arguments passed on to install.packages.

revision

svn revision, if omitted updates to latest

Details

It is vectorised so you can install multiple packages with a single command.

Examples

Run this code
# NOT RUN {
install_svn("svn://github.com/hadley/stringr/trunk")
install_svn("svn://github.com/hadley/httr/branches/oauth")
# }

Run the code above in your browser using DataCamp Workspace