forresdat
R/remove_table_forresdat.R
remove_table_forresdat.Rd
This function removes one or more tables from the data package forresdat
by making a commit on a local clone of the git repository.
While removing the table(s), it also updates the metadata (.json
file)
remove_table_forresdat(tables, repo_path, push = FALSE, branch = "develop")
vector with table names of tables that should be removed
name and path of local forresdat
repository in which
results/tables should be saved
push commits directly to the remote on GitHub? Default is FALSE (no). (This option can only be used with SSH.)
branch from repository forresdat
to which the new version
should be committed.
Default is 'develop'.
No value is returned, the tables are removed from the git repository.
if (FALSE) { # \dontrun{
#make a local clone of forresdat and change path before running
library(forrescalc)
# add path to your local clone of forresdat
path_to_forresdat <- "xxx/forresdat"
# if you don't have a local clone yet, make it:
git2r::clone("https://github.com/inbo/forresdat.git", path_to_forresdat)
remove_table_forresdat(
tables = c("qCoverHerbs", "qtotalCover"),
repo_path = path_to_forresdat
)
} # }