Archive a repository
gl_archive(project, ...)
id (preferred way) or name of the project. Not repository name.
further parameters passed on to gitlab()
API call,
may include parameter sha
for specifying a commit hash
if save_to_file is NULL, a raw vector of the archive, else the path to the saved archived file
if (FALSE) {
set_gitlab_connection(
gitlab_url = "https://gitlab.com",
private_token = Sys.getenv("GITLAB_COM_TOKEN")
)
gl_archive(project = "<<your-project-id>>", save_to_file = "example-project.zip")
}