Questions tagged [bitbucket-cloud]

Bitbucket Cloud is the online version of Atlassian's Git repository management service, publicly hosted by Atlassian servers at bitbucket.org. It hosts git repositories, along with associated project wikis, issue trackers, CI pipelines, pull requests, and user-managed download files.

Bitbucket Cloud is the online version of Atlassian's Git repository management service, publicly hosted by Atlassian at bitbucket.org. This hosting service provides both free and paid subscription options. It hosts git repositories, along with associated project wikis, issue trackers, CI pipelines, pull requests, and user-managed download files.

Should not be confused with [bitbucket-server] aka Bitbucket data center, which is an enterprise server software package that organizations can purchase to host a private Bitbucket server instance on their own server hardware.

179 questions
0
votes
0 answers

How to disable the "minimum successful builds" requirement for Bitbucket Cloud pull requests?

I want to allow my users to disable the "minumum successful builds" requirement in the Bitbucket Cloud pull request merge checklist. How can I do this? Some of our PRs are for documentation edits that have no effect on compiled or executed code.…
Ray Depew
  • 573
  • 1
  • 9
  • 22
0
votes
0 answers

Bitbucket API receiving GET return when sending a POST request

I am trying to create a new project using Bitbucket API to this endpoint: http://api.bitbucket.org/2.0/workspaces/{My_Workspace}/projects by sending a POST request. For headers I am passing: Authorization: Bearer + access token, Content-Type:…
0
votes
0 answers

for creating a java application for accessing repositories and saving files to bitbucket, how to create the access token and how to use it?

I am trying to create a java application for accessing repositories and saving files to bitbucket account. In bitbucket API documentation they're asking to use access token but not suggesting which one to use. For this I'm trying to create access…
0
votes
0 answers

Mirror Bitbucket Server repo in Bitbucket Cloud?

As part of some infrastructure code I am writing with Terraform, I am trying to deploy a Google cloud function. However, in the terraform code for the function, it is mandatory to specify a Cloud Source Repositories repo that the function will pull…
0
votes
1 answer

bitbucket pipeline - InBuilt variable prints empty value

I am trying to implement python static analysis for one of my project. However, I want to do this only on difference of file rather than all the files. The reason being we have lots of file already committed which has issue and it's not feasible to…
Gaurang Shah
  • 11,764
  • 9
  • 74
  • 137
0
votes
1 answer

Accessing bitbucket repository settings / links via API

Id like to enable/disable the "Require issue keys in commit messages" setting on repositories via the rest API. This can be done on the site by going to Repository Settings > Links. I cant find any examples on this on the documentation page…
Kelly
  • 59
  • 2
0
votes
1 answer

Bitbucket pipeline -- merge request closed event

I created a Bitbucket pipeline where I create a feature Environment per feature branch (on pull request creation event) but I need to add a cleanup step on pull request close or merge in bitbucket documentation there is no mention of event that can…
gharbiBdr
  • 31
  • 4
0
votes
0 answers

bitbucket code search API getting 401 error

I am trying to use the bitbucket code search API and I am getting 401 error "Token is invalid or not supported for this endpoint." I created a repository access token and can access this particular URL…
0
votes
1 answer

Is there anyway to recover deleted branch from bitbucket done through IntelliJ

I have created two branch with the same feature/Dev23 and feature/dev23. At the time of checkout in IntelliJ I was getting "there exist a branch with the same name". So I deleted one (feature/Dev23) and checkout the new feature/dev23. But now I want…
Weird Soul
  • 11
  • 1
0
votes
0 answers

Bitbucket cloud api - paginate and sort together

I'm using bitbucket API 2.0 to fetch the repositories sorted desc by updated_on. But both of these requests, result in same list https://api.bitbucket.org/2.0/repositories?role=member&sort=-updated_on&pagelen=1 This gets the below next URL and it…
Abhishek
  • 539
  • 5
  • 25
0
votes
0 answers

How to list the members present in an group in Bitbucket Datacenter model using Bitbucket API using Python?

I'm trying to get the list of users are in an group from Bitbucket Datacenter model using Python, am going through the bitbucket-API doc but could get till this point yet. Kindly let me know of ideas/steps to get here.
0
votes
0 answers

Pull request automatic rebase Bitbucket cloud

On Bitbucket cloud I would like to merge the pull requests using fast forward. Now it happens a lot of times that the pull request is not up to date, because other features are merged into the develop branch before the PR is merged. Normally this…
0
votes
1 answer

Cannot check out specific Git commit in Azure DevOps

I have a private Git repo hosted in BitBucket Cloud, and I am using Azure DevOps to run a YAML pipeline against it. The repo was originally hosted in Azure DevOps, but was recently migrated over to BitBucket and the pipeline updated. When I use the…
David Keaveny
  • 3,904
  • 2
  • 38
  • 52
0
votes
0 answers

Connect to bitbucket cloud from python script

I'm trying to connect to my bitbucket cloud account using python so that I can write a script to create a repository. However, when I am trying to connect using the below code, it keeps giving me a 401 login failed, despite me trying variations of…
Popchop3
  • 1
  • 2
0
votes
0 answers

files are not getting uploaded to remote bitbucket repo from local repo using jgit java

my requirement: create a new repo on remote bitbucket repo A and download the existing repo from remote to local i.e repo B . copy all the files from local repo B to local repo A. and push all files from local repo A to remote repo A. Code…
tester
  • 3
  • 2