Skip to content

rv configure repository remove

Remove an existing repository

Terminal window
rv configure repository remove <ALIAS> [OPTIONS]
  • ALIAS - Repository alias to remove

Starting with the following configuration:

rproject.toml
[project]
name = "configure"
repositories = [
{ alias = "CRAN", url = "https://cran.r-project.org" },
{ alias = "PPM", url = "https://packagemanager.posit.co/cran/2025-01-01" },
]

To remove CRAN as a repository entry, we will use the following command:

Terminal window
rv configure repository remove CRAN
rproject.toml
[project]
name = "configure"
repositories = [
{ alias = "PPM", url = "https://packagemanager.posit.co/cran/2025-05-01" },
]