vsts_get_commits {vstsr} | R Documentation |
Azure DevOps Project Git Repositories
Description
These functions will allow you to scrape git repository information from Azure DevOps.
Usage
vsts_get_commits(domain, project, repo, auth_key, query = NULL)
Arguments
domain |
The name of the Azure DevOps organization. |
project |
the name of the project in |
repo |
the name of the repository in |
auth_key |
authentication key generated by using |
query |
a list of extra parameters that can be sent to the API call:
|
Details
For more information about git repository API calls check https://docs.microsoft.com/en-us/rest/api/azure/devops/git/commits/get-commits.
Examples
## Not run:
# Add in own details to get a non-NULL output
auth_key <- vsts_auth_key("<username>", "<password>")
vsts_get_commits("domain", "project", "repo", auth_key)
## End(Not run)