Missed Team ’24? Catch up on announcements here.

×
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Git commands on pipelines

Akrem Abayed
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
December 29, 2017

I m trying to run some git commands on the pipeline, I tried two solutions none of them worked;

1. 

- generated an ssh key from the repository settings

- copied the public key into the authorized_keys file via this command. (this command is in the .yml file )

- cat my_ssh_key.pub >> ~/.ssh/authorized_keys

2. 

- git config user.name $MY_GIT_USERNAME
- git config user.email $MY_GIT_EMAIL

 Note: the repository is a bitbucket repos and is where the pipeline is running. So no external repos.

Also followed the steps here but it's not helping 

https://confluence.atlassian.com/bitbucket/use-ssh-keys-in-bitbucket-pipelines-847452940.html

Am I missing something ?

1 answer

1 vote
slmt January 27, 2018

When you configure an SSH key in your repository's Settings > Pipelines > SSH keys, you are presented with two options:

  • Generate keys
    This automatically generates a public and private SSH key pair. The private key can be used with SSH to access the Git repository on a read-only basis. This isn't very useful if you want to push to Git from a pipeline.
  • Use my own keys
    This allows you to provide SSH keys that have been granted access to your Git repo. It is possible to generate SSH keys that grant write access to the Git repo. See below for details

Obviously you want the Use my own keys option which grants read and write access. You can use team-level SSH keys so that CI scripts aren't tied to a specific user (although you'll get warnings about it).

Here's the process:

  • generate an SSH key pair on your local machine,
  • add the public key to the SSH keys in your Bitbucket team (Your team > Settings > Security > SSH keys),
  • add the same public key and the corresponding private key to Pipelines via Settings > Pipelines > SSH keys.

Here's hoping Bitbucket Pipelines will provide much easier git write access and hopefully before Bitbucket removes team-level SSH.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events