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
1 answer

GKE with Cloud DNS setting up

I'm new to kubernetes, helm and google cloud. Got problem during domain setup for ingress. What i got/did: https://github.com/atlassian-labs/data-center-helm-charts/ -> Bitbucket Installed it on GKE with helm Everything worked well.…
0
votes
1 answer

Get all threaded comments from Bitbucket API

I'm utilizing Bitbucket Server's REST API 1.0 to grab all activities on a pull request using the following endpoint: /rest/api/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests/{pullRequestId}/activities. My issue is that I'm unable to…
Kara Luton
  • 11
  • 2
0
votes
0 answers

Git Server show commit in history but checkout latest changes not getting

we got a issue related git . one branch got merged to release branch , commit is displayed in history but no change reflected in code. Latest Code: Changes missing : commit history : how to find what all changes are missing like this and resolve…
Jophy job
  • 1,924
  • 2
  • 20
  • 38
0
votes
0 answers

Bitbucket Server Backup Client in ubuntu server

Hi I am new to bitbucket backup process. I tried to backup the bitbucket server using the client by the typing the below line Example java -Dbitbucket.password="admin" -Dbitbucket.user="admin" -Dbitbucket.baseUrl="http://localhost:7990"…
0
votes
1 answer

Passing BitBucket server credentials when using Ansible get_url

I am trying to write an ansible script to download files ( shell scripts ) from local bitbucket server. Currently the code is as below. It asks for id and pw input and when I printed it, it prints a correct output. But the get_url call returns an…
adbdkb
  • 1,897
  • 6
  • 37
  • 66
0
votes
1 answer

Adding files to BitBucket repository using BitBucket Server REST API

Everytime a new file is added to my server, I want that file to be added into BitBucket server. The server containing files is non-git and I want to know if this is possible programmatically using Bitbucket server rest api. Is it possible to do a…
Bishal Paudel
  • 1,896
  • 2
  • 21
  • 28
0
votes
1 answer

PR diff in bitbucket

We have bitbucket server version 7.6.1 and have created a PR. This PR contains few excel files and pdf's. When I view the PR Diff view(in UI) I could only find the diff as 'old' and 'new' and not line by line difference. Whereas for text and code…
0
votes
1 answer

Jenkins Pipeline not providing Bitbucket Server environment variables

How can I configure my Jenkins Pipeline project to provide the CHANGE_* variables related to a Bitbucket Server commit? The project's Pipeline definition is Pipeline script from SCM (Bitbucket Server Integration). I have checked Bitbucket Server…
Johnathan Elmore
  • 2,156
  • 1
  • 19
  • 25
0
votes
1 answer

NuKeeper with Azure Pipelines and Bitbucket Server throws an error on pull request creation

in TFS (Azure Pipelines) I have a task to run nukeeper repo command: nukeeper repo "https://bitbucket.xxx.com/scm/myproject/myrepo.git" --api "https://bitbucket.xxx.com/scm/myproject/myrepo.git" --consolidate --source…
Tomáš Čičman
  • 281
  • 1
  • 5
  • 17
0
votes
0 answers

IIS Reverse Proxy is redirecting instead

I am trying to install Atlassian Bitbucket (server edition) on my server and have been struggling with the reverse proxy configuration. Symptoms: I'm able to configure the reverse proxy for Bitbucket. I'm just entering the server's name along with…
Vidul Talwar
  • 23
  • 1
  • 10
0
votes
0 answers

Enable ssl connection between bitbucket server and aws rds oracle database giving error

I am trying to establish ssl connection between bitbucket server(hosted on EC2 instance) and AWS RDS oracle database giving error. when i try to establish the ssl connection using openssl from bitbucket server to db. ssl connection is established…
0
votes
1 answer

Gitkraken can't access private repo via HTTPS

I am working for a new client and am trying to introduce Gitkraken but got stuck at an error where it says Pull Failed: failed to get server certificate: The handle is in the wrong state for the requested operation. Here is some context, I need to…
0
votes
0 answers

Prevent people who commited in a PR from merging/reviewing

I have a, what I thought, fairly simple use case for Bitbucket: An open pull request should only be allowed to be merged/reviewed by a person that did not create a commit in that pull request. Of course, this does not include "external" commits like…
Bennett Dams
  • 6,463
  • 5
  • 25
  • 45
0
votes
1 answer

Is there an add-on for Bitbucket Server that will allow you to add TO-DO comments prior to a branch being checked out?

Here's what I'm trying to accomplish. Sometimes, due to time constraints, code has been written poorly. The code gets merged and may not be changed again for quite some time. I would like to be able to add comments to a branch (let's call it…
Kev
  • 99
  • 8
0
votes
2 answers

Send the Build status of an Azure DevOps Server pipeline via REST to Bitbucket

I'm trying to send the status of a build pipeline to Bitbucket Server after the build is successful/failed. With Postman, I'm able to successfully update the build status of a commit with the REST API: POST…