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 can I download the list of all the branches which are in cloud bitbucket repository?

Our repo size is more and we want to delete unwanted branches. For that I want to make a list of all branches im a particular repo. But no where I am seeing any such option. Please guide. Regards, In Bitbucket CLoud I tried to find Export or…
VENKi
  • 1
0
votes
0 answers

Bitbucket Cloud : Conditionally skip stage or step using variables

We have several stages consisting of one or more steps. We would like ability to define if a stage should be executed based on condition declared as workspace or repository variable. Looked at the schema but condition does not let us use variables…
Samir Shaik
  • 1,000
  • 1
  • 14
  • 21
0
votes
0 answers

Bitbucket Slack settings page not opening

I am using slack and bitbucket. I have successfully installed bitbucket integration on slack. But no notification comes. So I want to change notification settings in Bitbucket. But Repository Settings->Slack Settings page not opening. The following…
Tolga
  • 147
  • 3
  • 4
0
votes
0 answers

How to successfully create a merged pull request through BitBucket API?

For my app I need to be able to create already merged pull requests through BitBucket API. According to their documentation, all I need to specify is the state parameter as MERGED, however this doesn't seem to work. When sending a request to that…
0
votes
1 answer

Renovate bot not adding reviewers for BitBucket

We are using Renovate to keep our dependencies up to date. Our code is hosted in BitBucket cloud. I have added a reviewers configuration to the renovate.json but it doesn't add any reviewers to the PRs that it creates. For the reviewers I have tried…
Matthew van Boheemen
  • 1,087
  • 3
  • 13
  • 21
0
votes
0 answers

Apply New Bitbucket Cloud Service Connection to Azure Devops Pipeline

In Azure Devops, I had a Bitbucket service connection that was created when a bitbucket pipeline was created using the "Bitbucket Cloud" option. That service connection was then deleted. How do I assign a new service connection to the pipeline? When…
MadSkeletor
  • 161
  • 1
  • 14
0
votes
0 answers

Pack corrupted in Bitbucket Cloud repo

I'm trying to make a full backup of every existing repository in my Bitbucket Cloud account. At a point, it throws an error that says "fatal: packed object X (stored in .git/objects/pack/pack-X.pack) is corrupt". Here's the script's code: import…
0
votes
0 answers

Bitbucket pipelines and SSH keys: How do I add a new Windows server and troubleshoot connection issues?

I configured SSH keys to deploy to my Windows server using the following document https://support.atlassian.com/bitbucket-cloud/docs/set-up-personal-ssh-keys-on-windows/ I generated the SSH keys on Bitbucket and copied the public key to my Windows…
0
votes
0 answers

How to poll and maintain list of repositories added/deleted/token revoked in Bitbucket using the REST API

My requirement is that an admin through a company portal tries to register an app with Bitbucket Cloud at which stage it will use Basic Auth to get all the list of workspaces, iterate each of them and retrieve all the repositories. I need to…
Mahesh
  • 954
  • 8
  • 18
0
votes
2 answers

Which is recommended git rebase or git merge to include the changes

I am working on branch A which was created from branch B which was created from master. Now master has moved ahead and I want to include the master branch changes into A. How can I do that? I have done this in the past by merging master into branch…
nick
  • 107
  • 6
0
votes
1 answer

Find branching history of current branch

There is a branch A that I am working on. I want to see the history of this branch. In the history I want to see things like master-> A3->A2->A1->A meaning that branch A3 was created from master and on top of A3, A2 was created.... So in history…
nick
  • 107
  • 6
0
votes
0 answers

how to set secret in bitbucket webhook api call

i created bitbucket webhook api call supplied it with secret the secret token not generate.how to set secret ?. i have use requests methods def create_hook(workspace_id): # Build the URL for the workspace webhooks endpoint url =…
0
votes
0 answers

Merging a branch into another using bitbucket GUI

I am working on branch A and now want to merge all changes from branch B into A on the Bitbucket cloud. Does bitbucket provide any GUI tool for that or do I have to use any git command?
nick
  • 107
  • 6
0
votes
0 answers

How to limit a Bitbucket Cloud App Password scope to a specific repository

Can you limit the scope of an App Password in Bitbucket Cloud to a specific repository? I know you can make a Repository Access Token, but that isn't tied to my user, and is targetted at CI/CD Pipelines. Context: I am a consultant working on a…
ScottR
  • 3,080
  • 3
  • 32
  • 35
0
votes
0 answers

Get all Pipelines in BitBucket Cloud API isn't returning a next page

Below you can find my code to get all pipelines for a repository in BitBucket Cloud: def get_pipelines(token, repo): """Return list of pipelines for repo""" full_pipeline_list = [] next_page_url =…
DenCowboy
  • 13,884
  • 38
  • 114
  • 210