Bitbucket is a hosting site for Git and Mercurial. The service offering includes an issue tracker and wiki, as well as integration with a number of popular third-party services. Atlassian acquired bitbucket.org in 2010.
I have the ssh url of my repo
git@bitbucket.org:accountUser/repo.git
and my remote url for fetch and push:
ssh://git@bitbucket.org:accountUser/repo.git
I've generated a new private and publich ssh key, the private has been added to the ssh agent…
my source tree not able to push suddenly, not knowing why even I've updated the source tree and git is still same. does anyone met this problem before
git -c diff.mnemonicprefix=false -c core.quotepath=false push -v --set-upstream origin…
We had a strange issue Monday morning with our CI pipeline jobs that are triggered from Bitbucket webhooks.
Before the TLSv1 and TLSv1.1 deprecation on December 1, I suspect we only had webhooks coming from these IP addresses:
All our pipelines…
I am using Bitbucket pipelines to build Docker images with Gradle. Here is my build:
definitions:
steps:
- step: &build-docker
name: Build Docker images
image:
name: openjdk:8
services:
- docker
…
When I push my changes I am seeing this in my TortoiseGit log:
remote: Bitbucket Cloud will be disabling support for TLSv1 and
TLSv1.1 effective 1 December 2018.
remote: Please make sure your TLS
version is updated.
remote: For more…
I am not sure how to reproduce this, or how it possibly occured, but I managed to get into a situation where git/bitbucket stored 2 branches with duplicate names.
If i looked on bitbucket, under branches, i would see multiple branches with the…
Are Bitbucket and Stash the same application?
As far as I understand Bitbucket was called before Stash?
How the moving from one system to the other is done?
I was trying to auto deploy code on server but I am getting below error in webhook log:
repository access denied. deployment key is not associated with the
requested repository. fatal: Could not read from remote repository.
Please make sure you…
I have to develop a functionality wherein I have to pull the files from bitbucket repository using python code on linux server. Files are located in bitbucket repository itself
Can you suggest me how to do that and best way of doing that. I tried…
Is any of the following possible through Bitbucket Pages?
use my own domain name instead of the default one. In particular, I want USER.com to point to USER.bitbucket.io. Redirect is not an option for me.
set a root folder other than /. In…
This might be just a case of me misunderstanding git, but my situation is as follows:
I have a master branch where I want to have only stable working code. Any addition to this branch must come from a pull-request in bitbucket (could be github or…
Environment: JIRA v7.5.2, Bitbucket Server 5.14
I have two JIRAs who's issue keys are 'JIR-01' and 'JIR-02'. They're two different issues but are solved by the same code change. I've been directed to create a single branch.
If I name the branch…
I would like to move a folder from git to another git repository.
For example:
This is my current folder structure in Git.
src/Project/RegistrationBundle
src/Project/PictureGenerationBundle
src/Project/CloudDriveBundle
readme.md
I would like to…
I'd like to ask you about the structure of the project in IntelliJ. I'd like to create my first web application based on microservices architecture.
I'd like to see all microservices in one project in IntelliJ as submodules. My question is if I…
I'm trying to do a proof of concept to redesign my CI/CD pipelines in Azure Pipelines (formerly known as VSTS). My codebase is in BitBucket.
I need a continuous integration build to be triggered when I push git tags to the remote repo.
The proof of…