Git Integration for Jira Self-Managed (Data Center/Server) Documentation

Contact Support
GitKraken Status  

Creating and configuring SSH keys

What’s on this page:

 


 

Introduction

The Git Integration for Jira app supports SSH git repository connections via Connect Wizard or Git on the Add new integration panel.

As a summary, you need to perform the following tasks in order to successfully integrate your SSH git repositories with Jira:

  • Obtain SSH git repository URL from your git host repository configuration page

  • Generate SSH key pair (public and private key)

  • Add the public key to your git host SSH configuration

  • Add the private key by connecting your SSH git repositories via Git Integration for Jira app.

 

Acquire SSH Git Repository URL

Get the git clone SSH URL from the repository home of the git host that will be used for Jira integration. The above screen represents an example from GitLab.

 

Generate SSH key pair (public and private key)

Do note that when generating the key pair for use with Git Integration for Jira app, the following checklist must be considered:

  • The generated SSH key must not be created using the OpenSSH format. Instead, use the supported certificate format: RSA,

  • Add the private key to Git Integration app and set the public key to your git host.

  • The generated SSH key must use the OpenSSL PEM storage format.

For more information on SSH connection issues, see article SSH key file format is invalid.

 

Linux/MacOS

On Linux and MacOS, perform this command in Terminal to generate an SSH key in RSA format:

ssh-keygen -t rsa -b 4096 -m pem -C "[email protected]"
MacOS often incorrectly creates an OpenSSH format certificate. For more details, see information on this common problem.

For lost SSH passphrase in Linux, you will need to generate a new SSH key pair. There’s no way to recover it.

For MacOS, if you configured your SSH passphrase with the password manager (Keychain), you may be able to recover it via Keychain Access.

 

Windows

For Windows, we recommend to use PuTTY and use PuTTYgen to generate key pair for your SSH git repository connection.

  1. Launch PuTTYgen and refer to the above image for the rest of the steps on this section.

  2. Set the Type of key to generate to RSA.

  3. Set the Number of bits in a generated key to 4096.

  4. Click Generate.

  5. Follow screen instructions such as moving your mouse pointer on random locations on the blank area of the PuTTYgen dialog. Do this until the progress bar completely fills up and the SSH key pair is generated.

  6. Entering a Passphrase for the generated key is optional but will ensure a more secure connection.

  7. Save your generated public and private keys to a file by clicking the respective options.

  8. Copy the generated key. This is the public key that will used on the SSH configuration page of your git host.

If you lose your SSH key passphrase, recovering it is impossible. You will need to generate a new SSH key pair and a new passphrase instead.

 

Add the public key to your git host

  1. Login to your git host and go the SSH configuration page (for example, Profile ➜ Settings in GitLab or GitHub).

  2. Paste the generated public SSH key from PuTTYgen to the provided box.

  3. Add this key to complete setting up the public key for SSH git connection for your git host.

 

Add the private key via Git Integration in Jira app

For the private key, PuTTY creates it in its own “.ppk” format. To convert it to “.pem” format:

  1. On PuTTYgen window, go to menu Conversions.

  2. Select Export OpenSSH key.

Add/upload this file to Git Integration for Jira app ➜ SSH keys or when prompted in connecting SSH git repositories.

 

Video Guide

Watch the video below to learn more details of the steps outlined above. As a bonus, the video also shows how to connect SSH git repositories to Jira and viewing commits and code diff in Jira issues.

Right click here to open this video in a new browser tab for more viewing options.

 

More How-to articles

How to get a quote?

Setting Project Permissions

How to create a HAR file and send it to support for analysis

Working with Custom API Path

Working with JMESPath Filters

Configure Source Code Diff Viewing

Creating and configuring SSH keys (Windows/MacOS/Linux) (this page)

Require Personal Access Tokens for user actions (create branch/pull request)

Ways to Index Git Data to Jira Issues

Proxy settings on adding integrations (except AWS CodeCommit)

Creating Personal Access Tokens

Have feedback about this article? Did we miss something? Let us know!
On this page