Gem is useful to submit pull-requests to Attlasian Bitbucket through CLI command if you don't like to open new browser tab
$ gem install bitbucket_pr
This is optional you can always use $ bitbucket_pr
as an executable,
but we'll be using $ git pr
instead.
Create bash executable named git-pr
with following snippet:
#!/bin/bash
bitbucket_pr "$@"
and add this to your path. On macOS you can place this in ~/bin
You might also need to
$ chmod +x ~/bin/git-pr
source
destination
and title
are required options.
username
password
and repository name
are also required, but can be saved for future.
$ git pr [source] [destination] -t[title] -a[username:password]`
example:
$ git pr middleware-patch master -rdachinat/rack_pg -adachinat:3Edm$51dd2 -t'Patching a middleware'
you can use --title="Patching a middelware" --auth="username:password"
style if you want
$ git pr configure -u[username] -p[password] -r[repository_name]
Repository name has to be in username/repository
format
example:
$ git pr configure -udachinat -p3Edm$51dd2 -rdachinat/rack_pg
Once you have credentials stored, you can skip -r
and -a
options
-d
--description
- Optional PR description--reviewers
- Optional reviewer username array (i.e.: --reviewers="reviewer1, reviewer2")-c
--close
- Optional close flag / close branch after PR is merged or not
You can always use git pr help
for further help 😄
Bug reports and pull requests are welcome on GitHub at https://github.com/dachinat/bitbucket_pr. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the BitbucketPr project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.