Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Is there a command line bitbucket tool?

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 Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Nov 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

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 Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Nov 15, 2023 • edited

Robert,

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

Like Robert Gelb likes this

@Jeroen PoismansWere you able to make it work?

Jeroen Poismans
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Nov 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

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.
Nov 14, 2023 • edited

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
Site Admin
TAGS
AUG Leaders

Atlassian Community Events