if (FALSE) {
set_gitlab_connection(gitlab_url = "https://gitlab.com",
private_token = Sys.getenv("GITLAB_COM_TOKEN"))
project_id <- ... ## Fill in your project ID
# List branches of the project
gl_list_branches(project_ = "<>")
# Create branch "new_feature"
gl_create_branch(project = "<>",
branch = "new_feature")
# Confirm that the branch was created
gl_get_branch("<>", branch = "new_feature")
# List all branches - this may take some time before your branch really appears there
gl_list_branches(project = "<>")
# Delete branch again
gl_delete_branch(project = "<>",
branch = "new_feature")
# Check that we're back where we started
gl_list_branches(project = "<>")
}
Run the code above in your browser using DataLab