Bitbucket Server - Examples
The list of options and some examples for Bitbucket Server
The following options are available for the snyk-scm-contributors-count bitbucket-server
command:
Before running the command
Export SNYK_TOKEN (if you want to get the contributors ONLY for repos that are already monitored by Snyk):
Make sure that your token has Group level access or use a service account's token that has Group level access. To learn more on how to create a service account, refer to How to set up a service account.
Copy the token value.
Export the token in your environment:
Get your Bitbucket Server token and URL:
Create a Token if one does not exist, using this guide.
Note: Make sure your token has read access to the repos.
The URL is the actual URL of your Bitbucket Server instance, for example http://bitbucket-server.mycompany.com.
Running the command
Consider the following levels of usage and options:
Usage levels
To get commits for all projects and their repos in Bitbucket Server, provide the Bitbucket Server token and url:
To get commits for some projects and their repos in Bitbucket Server, provide the Bitbucket Server token, Bitbucket Server url ,and the projects, separated by a comma:
To get commits for a specific repo in Bitbucket Serve, provide your Bitbucket Server token, Bitbucket Server url, a project, and a repo name:
Options
To get all the commits from Bitbucket Server regardless of the repos that are already monitored by Snyk, add the
--skipSnykMonitoredRepos
flag. You might have repos in Bitbucket Server that are not monitored in Snyk,. Use this flag to skip checking for Snyk monitored repos and go directly to Bitbucket Server to fetch the commits.To exclude some contributors from being counted in the commits, add an exclusion file with the emails to ignore(separated by a new line) and apply the
--exclusionFilePath
with the path to that file:To set the output to json format: add the
--json
flag:To create an import file for me with my unmonitored repos, add the
--importConfDir
flag with a valid (writable) path to a folder in which the import files will be stored and add the--importFileRepoType
flag (optional) with the repo types to add to the file (all
/private
/public
, defaults toall
). Note that these flags can not be set with the--repo
flag.For more information about these flag, refer to Creating and using the import file.
To run in debug mode for verbose output, add
DEBUG=snyk*
to the beginning of the command:
Last updated