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

Making it easier understand changes from a pull-request or diff

We've got a relatively large team working on one codebase. We have a fairly mature process in place to ensure changes are reviewed before they get merged to our main line. The problem that I have is that sometimes change sets are very "large".…
Daniel
  • 4,481
  • 14
  • 34
1
vote
1 answer

Why is there a delay between a pull request and the possibility to fetch it (in stash)?

I am trying Stash, and I observe something that I cannot understand: I push a new branch; I create a pull request (from the browser); Then I am trying to do: $ git fetch origin +refs/pull-requests/*:refs/remotes/origin/pr/* --dry-run Sometimes,…
Anne
  • 1,270
  • 6
  • 15
1
vote
1 answer

Capistrano unable to pull a Stash repository using SSH

I followed the following procedure: Created an SSH key; Enabled SSH in Atlassian Stash; Added SSH key for the Stash account called Capistrano (already used by Capistrano to successfully connect using username and password to Stash) Tested the SSH…
itwebdeveloper
  • 699
  • 1
  • 7
  • 15
1
vote
1 answer

Is it possible to use pep8 and yapf in a Stash pre-receive hook?

I'm trying to write an Atlassian Stash pre-receive hook that will check if pushed code's python files comply with the python PEP-8 style convention. There are already two tools that do exactly what I want-- pep8 and yapf. However, I do not know how…
user2946797
  • 171
  • 2
  • 11
1
vote
2 answers

Failure to find com.atlassian.stash:stash-parent:pom:5.0.18

After working on jira and confluence, now working on stash. As per stash documentation i have created stash plugin but unable to convert eclipse compatible and running stash instance. pom.xml:-
Ashwani Verma
  • 39
  • 1
  • 11
1
vote
1 answer

Git workflows / gitflow - multiple concurrent large projects

I'm trying to figure out whether I would be able to utilize a modified gitflow Git workflow, and I'm struggling with it (not sure if it's relevant, but planning to use Atlassian Stash): We currently use CVS, and have multiple on-going large-scale…
Pavel Chernikov
  • 2,186
  • 1
  • 20
  • 37
1
vote
1 answer

Stash's server.xml file can't be found

I want to change the Stash's port to 80 with steps following this link: https://confluence.atlassian.com/display/STASH/Changing+the+port+that+Stash+listens+on, but I can't find the shared folder, and also can't find the server.xml file, I use Stash…
spotcool
  • 19
  • 3
1
vote
2 answers

Is there an Atlassian stash plugin to handle git notes?

Atlassian stash doesn't support git notes natively but notes are so useful for things like bug tracking, logging build results and so on that it boggles my mind there's no official support for it. Has anyone written a plugin to provide at least…
David Greene
  • 394
  • 2
  • 12
1
vote
1 answer

Trigger jenkins build on stash pull request

I've been trying to get the build on PR working for some time now following the usual guides. However i ran into some issues. Here is what i added to the previously existing configuration @ Jenkins project: Source Code Management: Multiple SCMs -…
Adr3nl
  • 453
  • 2
  • 5
  • 19
1
vote
2 answers

How do I recover a lost git commit from Atlassian Stash?

We had a commit that fixed an issue on our codebase that was merged via a pull request. The commit is now nowhere to be found. I have no idea how it was deleted as it was long time ago. The good thing is that I can see the pull request, the commit…
Alexander Suraphel
  • 10,103
  • 10
  • 55
  • 90
1
vote
1 answer

Verifying a git repository (Stash) restore

We have disaster recovery plans that mean we take a backup of our git installation (Atlassian Stash in our case) and restore it on a test server to verify the backup was a good one. If the restore process fails then we have a problem but we're…
GogLlundain
  • 552
  • 4
  • 9
1
vote
2 answers

Mirror git branch to svn repo

I'm looking for a way of setting up an existing git repository (cloned from a central repo hosted on Atlassian stash) so that changes from a specfic branch are synchronised to a path on an SVN repository. I'm not particularly interested in fetching…
Sonafets
  • 497
  • 1
  • 4
  • 13
1
vote
1 answer

Stash authentication failed

I recently installed and configured a Stash server. I can login on the webinterface but then I supply the same username and password when for example doing a git clone it says : fatal: Authentication failed for '...' How is this possible?
Brovoker
  • 896
  • 5
  • 16
1
vote
1 answer

How to fork repository on stash?

We can fork repository using this /rest/api/1.0/projects/{projectKey}/repos/{repositorySlug} But I am not able to understand how to use it in python requests API ? It throws me 500 status code. I used this: …
vijay
  • 17
  • 3
1
vote
2 answers

What firewall rules do I need to add for Subgit?

I've installed Stash, with the SVN mirror plugin - which installs subgit. I have iptables setup something like: Chain INPUT (policy DROP) target prot opt source destination ACCEPT tcp -- anywhere anywhere …
wkstar
  • 255
  • 4
  • 17