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

How to change the context path of bitbucket-server in docker mode

I am looking for a way to change the context path of bitbucket-server in docker mode, because I am trying to run it behind a traefik reverse proxy and want to use my domain for multiple applications (one for each path): I want my bitbucket-server to…
0
votes
1 answer

Git clone from bitbucket server not works by https

I am trying to clone repository from private bitbucket server to my os x computer. It works well if i use git clone ssh://git@repositoryname:0001/subfolder/reponame.git, but when i try to call git clone https://repositoryname/subfolder/reponame.git,…
AleksRevolt
  • 121
  • 7
0
votes
1 answer

Bitbucket server rest api retrieving commit data from a tag that contains slashes

I am trying to retrieve commit data for a tag that has slashes in the name using BitBucket REST API for bitbucket server. Ex tag: release/2020-09-23-v3.13.4 I am using the following rest URL for a GET request but getting a 404…
Dzerlig
  • 247
  • 2
  • 10
0
votes
1 answer

dotnet test errors on Atlassian pipeline MSB3026 and more

Have a yaml file build script and all works fine except for the unit test which fails after various warnings eventually raising MSB3027 and MSB3021 errors. This is in a pipeline in Atlassian. Seen issues mentioning long PATH names but how to resolve…
richardb
  • 943
  • 1
  • 10
  • 27
0
votes
1 answer

Need to do first commit using bitbucket rest API

I am using bitbucket rest api for creating new private repository & create new branch. Both api's are working fine. POST https://{bitbucket url}/rest/api/1.0/users/{username}/repos -> create new repository POST https://{bitbucket…
0
votes
1 answer

Bitbucket rest api to get diff of commits present between any two branches

I am trying to get list of diff of commits present between two branches for reporting purpose. Suppose i need to find out commits which are present in release branch but not to prod branch . So for this i need a rest api from bitbucket which will…
0
votes
1 answer

Is there a way to get only the commits on a specific branch from the BitBucket server REST API?

I'm using the following call to the BitBucket 1.0 API to get all the commits on a branch. This call returns all the commits from the specific branch, but also all the commits from the beginning of time. I'm looking for a way to only get the commits…
Tim
  • 101
  • 1
  • 7
0
votes
2 answers

Unable to fetch/pull code from bitbucket server due to password change

After password change on bit bucket server, I did not get the password prompt to enter the new password. Instead of asking for a new password, it keeps on trying to fetch the code from a bit bucket server using an old password. While…
Deepak Gupta
  • 197
  • 1
  • 8
0
votes
1 answer

Bitbucket API - Get list of comments on pull request inside merge hook

I am adding merge hook through bitbucket server plugin API to prevent merging of pull request if there is some specific comment is missing on PR I am successfully able to apply this hook on PR, but DON'T see way to get list of comments on PR…
Rakesh Bhalani
  • 668
  • 4
  • 10
0
votes
1 answer

BitBucket server Ctrl M character removal

We observed Ctrl+M character after the BitBucket migration from Perforce almost of the files. Do you have BitBucket-server level options/settings to remove the Ctrl+M chars in all the repository or from each repo/branch? or else Let us know if any…
Srinivasan
  • 11
  • 1
0
votes
2 answers

Bitbucket Server - How to get the Bitbucket Server instance

I'm new to Bitbucket Server. Currently, I'm trying to configure a Jenkins job to build my repository, which is located in my personal space of Bitbucket Server (I'm not admin of BitBucket Server). I followed the video here:…
0
votes
1 answer

How to trigger Azure DevOps pipeline when pushing commits to bitbucket custom server?

My company's repository hosted on bitbucket custom server which can be only accessed from intranet. Therefore, I setup a self-host agent for Azure DevOps and this agent could do a git pull and build and release too. It works and the problem is I…
0
votes
1 answer

How to add file to repo from Bitbucket Server like GitHub

I am on version v6.6.3 of Atlassian Bitbucket Server: From the GitHub website, I can freely add new files and edit existing files without needing to clone / push. In Bitbucket, I can freely edit any existing file by clicking on the file in the…
perry_the_python
  • 385
  • 5
  • 14
0
votes
0 answers

Self host Bitbucket with SSL using Express

I can get bitbucket to run at localhost:7990 just fine however I wanted to secure it with a SSL and also remove the port from the address. When I attempt to do this with the code below and my node server I just simply get the 'CANNOT GET /' error if…
Robert
  • 343
  • 6
  • 16
0
votes
1 answer

Files getting modified while cloning repository from BitBucket

We are using BitBucket as part of our Continuous Integration (CI) set up. As part of it, we are cloning source code to server machine (windows OS) using Jenkins GIT Plugin. While cloning repository to server machine, we noticed files with extension…