Usage
gitlab_connection(gitlab_url, login = NULL, email = NULL, password = NULL,
private_token = NULL, api_location = "/api/v3/")project_connection(gitlab_url, project, login = NULL, email = NULL,
password = NULL, private_token = NULL, api_location = "/api/v3/")
Arguments
gitlab_url
URL to the gitlab instance (e.g. https://gitlab.myserver.com
)
login
name of user to login; either this or email or private token must be specified
email
email of user to login; either this or login or private token must be specified
password
password of user to login; if no private token but login or email is given, this must be specified
private_token
private_token with which to identify; either this or login/email + passsword must be specified to init connection
api_location
location of the gitlab API under the gitlab_url
, usually and by default "/api/v3/"
project
id or name of project to issue requests to