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

How do I copy a GitHub.com repository to a private Git server?

I'm new to git and trying to figure out the best way to copy an existing GitHub.com repository owned by another user to a private git server I have on Atlassian Stash. Ideally we could do a copy at least once a month. The tedious method I'm doing…
fourg
  • 13
  • 2
1
vote
1 answer

how to use custom ssh keys with stash (cli) tools?

I just found Atlassians nifty stash command line tools. Cool. Since I use custom ssh keys I configure them in ~/.ssh thusly: Host bb Hostname bitbucket.org user git IdentityFile ~/.ssh/custom_key When I tried to issue a pull request…
hippeelee
  • 1,788
  • 1
  • 10
  • 21
1
vote
1 answer

How do I set up a git repo to be used by multiple users?

I'd like to set up a git repository on one of our servers that's accessible to certain users. We're using Stash as out git host, and only users with a Stash key are able to push. I'd like to have our local code in a location accessible to everyone…
CPS
  • 531
  • 1
  • 9
  • 18
1
vote
1 answer

npm install access denied error on ssh git repo - windows7

I am trying to help another developer run npm install on their windows machine but they are getting an access denied error with one of the private project dependencies in package.json. The project the cloned one is coming from is on the same domain…
thescientist
  • 2,906
  • 1
  • 20
  • 15
1
vote
1 answer

Stash Merge 2 Repositories with complete History

I want to merge 2 Repositories in the Same Project in Stash. The complete History should be merged too. Is there any way to do this?
user3454877
1
vote
1 answer

Atlasian Stash and svn Integration

Is there a way to integrate Atlasian STASH with Subversion. Stash by default is used for Git. But we need to integrate it with SVN. Please can any one help me out in understanding whether we can integrate STASH and SVN?
1
vote
1 answer

Git hook and wordpress git pull page not found

So I was searching and can't find how to set up git hook with wordpress I added a deploy.php to my public_html directory where is my wordpress blog! so when I commit to git stuff, something server doesn't pull it and when I type…
boska0712
  • 65
  • 7
1
vote
1 answer

Consolidating commits in Release branch

I'm following this guide to setup my git branches - http://nvie.com/posts/a-successful-git-branching-model/ I'm doing daily builds from the dev branch and tagging it with the version number. When we're ready for a release, I branch off of dev and…
tempid
  • 7,838
  • 28
  • 71
  • 101
1
vote
1 answer

Remote Git pull using ssh results in Permission denied (publickey)?

I have a git repository in a hosted instance of Atlassian Stash. I then have three machines: olympus, zeus and hera where I deploy the latest release of a software system. To automate this I'd like to remotely deploy from olympus onto the other…
SkyWalker
  • 13,729
  • 18
  • 91
  • 187
1
vote
1 answer

EGit and Stash with Eclipse - SSL hostname verification

Using Eclipse, EGit and Stash Trying to push upstream to Stash with EGit, over HTTPS. Stash server has valid SSL cert but hostname doesn't match. From command line I can work around with GIT_SSL_NO_VERIFY=1. What's the equivalent in EGit? Thanks.
wrschneider
  • 17,913
  • 16
  • 96
  • 176
1
vote
1 answer

Svn2Git - Push Large GIT Repo To Remote

I'm currently trying to move our large Subversion repository, around 25GB including history, into GIT and I seem to have hit two issues. One of which I think I've resolved, but I'll cover both for completeness in case I screwed up the first…
1
vote
2 answers

Atlassian Stash vs Git Client

We are planning to use Stash. To my knowledge we already have a Git installation and need to configure Stash to use it. My understanding is that Stash can help configure branches, merges, and other stuff. So do my development teams need to use Stash…
Alfaromeo
  • 379
  • 2
  • 6
  • 14
1
vote
2 answers

Is it possible to 'lock' repositories in Atlassian Stash/Bitbucket?

Is there a way we can prevent developers from pushing to a specific repository (for example, if the build is broken and we don't want to allow any new code until the current build is fixed)? I guess this would require us to also allow specific users…
MrDuk
  • 16,578
  • 18
  • 74
  • 133
1
vote
1 answer

Enforcing policies from Atlassian Stash Repository merge request check plugin

I need help on how to successfully create a RepositoryMergeRequestCheck As part of our merge workflow, we need to ensure some policies about some files. Policies includes among others: File naming conventions of individual files File naming…
Carlos Muñoz
  • 17,397
  • 7
  • 55
  • 80
1
vote
2 answers

Jenkins and Stash setup ssh key

I'm setting up jenkins and stash on the same server. Stash is working well through http. To let Jenkins connect to Stash I created a ssh (with the Jenkins user and the key is stored into /var/lib/jenkins/.ssh/id_rsa.pub). As the guide says I added…
ddelizia
  • 1,571
  • 5
  • 30
  • 54