Questions tagged [bitbucket-server]

Bitbucket Server (formerly known as Atlassian Stash) is a tool for "Git Repository Management for Enterprise Teams"

Bitbucket Server (formerly known as Atlassian Stash) is a tool for "Git Repository Management for Enterprise Teams". It provides many features comparable to GitHub and Bitbucket.

Including:

  • Creating git repos
  • Managing access by individuals and groups
  • Linking JIRA issues to commits
  • Creating and managing pull requests
819 questions
0
votes
0 answers

Best way to use Python and Bit Bucket

I am having problems with Python and Bit Bucket. To display/pull/push do anything really. I am looking @ Two different libs, atlassian-python-api, and stashy, both seem to have problems my code is very simple: from atlassian import Bitbucket import…
Alehandro
  • 39
  • 8
0
votes
0 answers

Commit notes to display changes made in code

I am using Team Explorer in Visual Studios and have linked my BitBucket account up with it and can quite happily make changes to my code and Commit/Push/Sync those up to show on the BitBucket site. However, it's been tasked of me that I find a way,…
0
votes
1 answer

groovy script to get private Bitbucket Branches by making an api call

I want to show all the branch names dynamically using a groovy script by making an api call to bitbucket private repo. I am following this article link.In this article top is using https , instead I like to use ssh. String baseUrl =…
user17970
  • 495
  • 1
  • 9
  • 25
0
votes
0 answers

Git Branch not being detected when trying to switch to it on staging server

I have created a git branch from master at a certain commit that is a bit behind. I made some updates and tried to push to that specific branch. Steps I did: git clone [url] git checkout -b [new-branch] [commit-hash] git add . / . git commit -m…
John Doe
  • 571
  • 1
  • 9
  • 26
0
votes
1 answer

Merging into develop branch causes feature branch to be deleted

I work on a project that uses git and Atlassian bitbucket. When we merge a feature branch into our develop branch, the feature branch's remote seems to get deleted. But that only seems to happen when we merge into develop - not when we merge into…
Woodchuck
  • 3,869
  • 2
  • 39
  • 70
0
votes
1 answer

Automatically update npm version when pull request is merged in bitbucket

The idea is to trigger npm version patch to increase the version from 1.2.3 to 1.2.4 once you press the button of the image: So every change in the develop's branch means a new build version in the application. I have tried using…
David
  • 614
  • 5
  • 20
0
votes
1 answer

how to get bitbucket tagged commits sorted by date-wise using Bitbucket API?

I am working on a project that needs to fetch all tagged commits sorted in reverse order by datetime. I first tried using this API /2.0/repositories/{workspace}/{slug}/refs/tags but the results are in random order which i believe is sorted in asc by…
0
votes
0 answers

Composite build without revision synchronization for dependencies in TeamCity

I'm trying to setup a pipeline for running all kinds of tests against pull requests into my repository. Repository is git repo hosted with Bitbucket Server and TeamCity is Enterprise 2019.1.5 (build 66605). There are a few key aspects to the…
0
votes
0 answers

Avoid New Master Branches in Bitbucket

Hi StackOverflow Community. We have a ticket system connected to Bitbucket-Server in which we can click 'Create Branch'. Then we go to the Bitbucket Server Site and we can choose repository, Branch type and so on. I want to block building a New…
0
votes
1 answer

Connect SonarQube with Bitbucket repo

I've created a new SonarCube project and want to connect it to a repository in BitBucket. I know there is a Sonar plug-in for BitBucket to view stats inside Bitbucket. However, I want to see these stats inside SonarQube. Any help on this is…
Smi28
  • 57
  • 1
  • 11
0
votes
1 answer

In Atlassian Bamboo, is there any way to export build results to Excel sheet or at least as CSV?

In Atlassian Bamboo, is there any way to export the daily E2E test runs from bamboo to excel sheet, so that I can monitor my project status. I'm also looking for any other better solution if the above is not possible. Thanks
Viswesvar Sekar
  • 2,743
  • 3
  • 11
  • 7
0
votes
0 answers

How to sync user directory on bitbucket server to jira with both running on aks?

When trying to sync the user directories of Jira to other atlassian products (confluence and bitbucket server running on aks) a 403 error is returned. Upon looking into this error the following steps have been…
0
votes
1 answer

Unable to change port number in Bitbucket

My Bitbucket instance is running in an Ubuntu server. The initial installation was done by following the wizard and in that moment it was set the default port 7990. Now I would like to change it to use the port 443, so as per the official…
Zumo de Vidrio
  • 2,021
  • 2
  • 15
  • 33
0
votes
0 answers

How to read a file content from Bitbucket via a Mulejob?

I have a requirement to integrate data from Bitbucket through Mulejob. Not looking for CI/CD integration, I mean actually read content of a repository file through Mule. Also given, I am a newbie to Mule. I am able to read a content of a repo branch…
tulip
  • 1
  • 1
  • 2
0
votes
1 answer

Can we perform a Jenkins job only on the files within a pull request instead of the whole repository?

I want to design a Jenkins job that will trigger when a pull request is created and perform a static code analysis only on the java files that have been modified. I've already created a Jenkins job that is triggered on pushes and scans a repository…