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

Using java how can I programmatically create a new bitbucket repo in a specific project, under a specific workspace?

Need to create new bitbucket repo in a specific project and under a specific workspace and it using java was looking for BitBucketClient,jgit but was not able to find any ref for creating a repo in a specific project and under a specific workspace…
tester
  • 3
  • 2
0
votes
0 answers

Does Bitbucket provides java API for importing a repository?

url : https://support.atlassian.com/bitbucket-cloud/docs/import-a-repository/ how to perform below steps through java api : -Select Create > select Repository from the dropdown menu. -Click Import repository from the Create a new repository…
0
votes
0 answers

Unable to debug NuGet package using Source Link with Bitbucket Cloud

Has anyone had any luck getting Source Link to work when using Bitbucket Cloud as the repo with 2 factor and SSH auth enabled? I've followed all of the provided guidelines on both the NuGet package and consuming end of things. Symbols are loading…
Mike D
  • 1
  • 1
0
votes
0 answers

Difference between Bitbucket commit history and git logs

We are using bitbucket cloud for source control. I am trying to analyze merge requests through git commit logs with quite a lot of repos, hence bitbucket UI does not help. We have 4 long term branches (dev, staging, preprod, master) with lots of…
0
votes
1 answer

Is there a Bitbucket API to search if a repository variable is defined in all of my workspace's repos?

Instead of defining a Bitbucket Cloud workspace variable that can be used by all the repos in the workspace, someone defined it in each repo, but not in all of them, of the workspace. Now I want to remove the variable in the individual repos, and…
Chris F
  • 14,337
  • 30
  • 94
  • 192
0
votes
1 answer

How to create a branch restriction through Bitbucket (cloud) API

I am trying to create a branch restriction using below curl command but it is throwing a bad request. How can I create a working API call? This executed on Jenkins using sh and enclosed in double quotes (""). curl -X POST -s…
Efox
  • 651
  • 3
  • 8
  • 19
0
votes
2 answers

Bitbucket Cloud interceptor for Tekton EventListener

I'm creating an eventlisterner for my repo on Bitbucket Cloud and saw on the curent example on the Tekton documentation that the Bitbucket interceptor only support Bitbucket Server. I've created the eventlistener and looks like this: --- apiVersion:…
0
votes
1 answer

Jenkins build: notify Bitbucket cloud

I'm using Jenkins 2.346.2 The repository is located on bitbucket.org (cloud, not local server). I want the build status to be sent to bitbucket and to be displayed as the PR build status. I'm trying the plugin:…
0
votes
0 answers

Unable to apply a tag to branch from Bitbucket pipeline

I have a self hosted runner running on Windows. I have a step in my pipeline to create a label and tag the current branch with that label. I looked at long thread in this community that it should work. But it is not working. The step is below: -…
videoguy
  • 1,732
  • 2
  • 24
  • 49
0
votes
1 answer

How to find the default branch of Repository - Bitbucket Cloud API

I went through the complete API documentation of The Bitbucket Cloud Rest API: https://developer.atlassian.com/cloud/bitbucket/rest/api-group-repositories/#api-group-repositories But I did not found any way or API to get the default branch of…
Chetan Tete
  • 130
  • 1
  • 2
  • 9
0
votes
1 answer

Deleting bitbucket repositories

I want to delete my atlassian account, workspace, project and all my bitbucket repos but I am bit confused by the docs. What’s not deleted To preserve Git authorship and other records, we won't automatically delete the following: - Any workspaces…
ebg11
  • 906
  • 1
  • 12
  • 33
0
votes
1 answer

Access Remote Maven Artifactory from Bitbucket Pipelines

I'm trying to set Bitbucket pipelines to run Maven verify command. What I currently struggle with is how to access dependencies that are defined in my POM. I have those dependencies in a remote artifactory but how do I set settings.xml on the BB…
Shvalb
  • 1,835
  • 2
  • 30
  • 60
0
votes
1 answer

Jenkins Bitbucket Webhook infinite build loop issue

I have set up a pipeline job in Jenkins which push changes to Bitbucket. This causes a new build trigger in Jenkins. How to avoid Jenkins job build if the commit is from Jenkins pipeline itself? Thank you.
0
votes
1 answer

Bitbucket API search single file

I want to be able to search/read for a single file without needing the path from bitbucket. Is there a way to do that through the Bitbucket API?
0
votes
1 answer

Is it possible to add reviewers at folder level in bitbucket?

We can have the branch permissions at the Project level or at the repo level, requirement is - is there a way can we have the branch permissions at the folder level. When developers raise a PR for code change, as per branch permission we have…