bitbucket-cl v1.0.3
Bitbucket CLI
This is a fork of https://github.com/sebric/bitbucket-cli/tree/develop just with a few more feature. This bitbucket CLI tool is a simple and minimal helper to interact with Bitbucket via its public API.
In all honesty, at the moment you can only create PRs with it ✌️but... who knows :)
Motivation I needed a simple way to create PRs via our Bitbucket Pipelines Scripts and therefore I just created this super simple CLI tool. We use the public docker image to easily integrate it to our Pipelines so feel free.
Some details about testing
There are no tests as this is just a simple mini pet project including just a few lines of code.
Security
We're using simple BASIC auth and no sophisticated OAuth stuff here just to warn you :)
How to use it
npm install --global bitbucket-cl
bitbucket-cl --version
Commands
create-pull-request
Well... It creates a PR for you.
Usage: create-pull-request [options] <repo-slug> <title>
Create a Bitbucket PR
Options:
-s, --source <source> Source Branch (default: "develop")
-t, --target <target> Target Branch (default: "master")
-r, --reviewer <reviewer> Add one or more reviewers by username (only Username works), use once with comma-separated values or multiple times
-d, --description <description> Describe the PR, supports Markdown
-u, --username <username> Username to connect to bitbucket
-p, --password <password> Password to connect to bitbucket
--keep-branch Should BB keep the branch open after merge?
-h, --help output usage information
create_repo
It creates a repository
usage: create_repo <repo_name> -k ABC -u myuser -p password_from_bitbucket_app_passwords
Options:
-t, --title <title> Name of the Repository
-k, --key <key> Key of the project
-u, --username <username> Username to connect to bitbucket
-p, --password <password> Password to connect to bitbucket
-h, --help output usage information
delete_repo
It deletes a repository
Usage: delete_repo <repo_name> -u myuser -p password_from_bitbucket_app_passwords
Options:
-t, --title <title> Name of the Repository
-u, --username <username> Username to connect to bitbucket
-p, --password <password> Password to connect to bitbucket
-h, --help output usage information