Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Is there a command line bitbucket tool?

Robert Gelb November 14, 2023

I can push changes to bitbucket in the cloud via `git` command.  I would also like to be able to create a pull request from the command line.

Is this possible?

2 answers

3 votes
Jeroen Poismans
Community Champion
November 14, 2023

Hi Robert!

Git can't create pull request. If you want to do this from a command line you might want to look into the Bitbucket REST api.

Here is a link to the Bitbucket REST call you need:
https://developer.atlassian.com/cloud/bitbucket/rest/api-group-pullrequests/#api-repositories-workspace-repo-slug-pullrequests-post

Regards,

Jeroen

Robert Gelb November 14, 2023

P.S.  I figured out what the problem was so hopefully the next person finds this.  The username needs to be the username, not the login email address.  And the password has to be an App Password, not your login password.

 

So I tried this with no success.  I am not sure what I am missing.   Here is my scenario:

I have a branch `feature/sc-6745-abs-accounting-a-p-ledger` and I want to create a PR to merge it into `develop`.

So I kick off the following from the command line (powershell in Windows):


curl https://api.bitbucket.org/2.0/repositories/jwdev/adris-web/pullrequests `
-u MyUserName:MyPassword `
--request POST `
--header 'Content-Type: application/json' `
--data '{
  "title": "My Title",
  "source": {
    "branch": {
      "name": "feature/sc-6745-abs-accounting-a-p-ledger"
    }
  },
  "destination": {
    "branch": {
      "name": "develop"
    }
  }
}'

 

It came back with 401 unauthorized. 
For the username, I am using my username, e.g. myname@company.com.  For password, I used my regular login password.  I also tried creating an app password and gave it right to read/write pull requests.  Both passwords came back as 401 unauthorized.  I then created yet another app password and gave it every permission imaginable.  Still didn't work.

I think I got the URL right.  The workspace is called JW Development, but in the URL it's jwdev (e.g. https://bitbucket.org/jwdev/workspace/overview/).  And the repository is called adris-web.


Why isn't it working?

Jeroen Poismans
Community Champion
November 15, 2023

Robert,

Let me validate with my own repo, I will get back to this!

Like Robert Gelb likes this
Robert Gelb November 17, 2023

@Jeroen PoismansWere you able to make it work?

Jeroen Poismans
Community Champion
November 21, 2023

Hi @Robert Gelb 

Sorry for the wait, busy times here :-). I got it working in Postman with this body:

{
"title": "My Title",
"source": {
"branch": {
"name": "develop"
}
},
"destination": {
"branch": {
"name": "master"
}
}
}

So exactly what you had. The URL was also correct!

What I did differently?
Under the repository I added an Access Token with the correct permissions : 
Screenshot 2023-11-21 at 17.11.31.png

Then I user this access token in my request. In the request this is translated into an authorization header:

Authorization: Bearer <your token>

Give it a try!

Jeroen

Like Sanjen Bariki likes this
Robert Gelb November 21, 2023

I did get it working (see the edit to my post above yours).  One thing that I found odd is that the resulting PR doesn't include the default reviewers.  I got around by adding them manually in the body of the API call, but it should add them add them automatically.

1 vote
Sanjen Bariki
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 14, 2023

Hi @Robert Gelb ,

 

Welcome to Atlassian community!

Thanks you @Jeroen Poismans ,

Please find the below link to do the pull request in Bitbucket.

Regards,

Sanjen

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PERMISSIONS LEVEL
Product Admin
TAGS
AUG Leaders

Atlassian Community Events