GitKraken Desktop Documentation

Authentication with Other Git Hosts in GitKraken Desktop

Last updated: March 2026

Use this page to authenticate GitKraken Desktop with Git hosts that do not have a dedicated integration page, including TFS, AWS CodeCommit, Google Cloud Source Repositories, and custom services. It covers HTTPS cloning, SSH key setup, SSH agent usage, proxy handling, and credential reset behavior.

Requirements and limits

  • Host scope: Git hosts without a dedicated GitKraken integration page
  • Authentication methods: HTTPS or SSH
  • Supported SSH URL formats: ssh://{user}@{host}/{repo} and {user}@{host}:{repo}
  • Windows SSH note: Only Pageant is supported as the local SSH agent
  • SSH config limitation: GitKraken Desktop does not support .ssh/config aliases
  • Proxy behavior: Windows uses system proxy prompts; macOS and Linux prompt directly in GitKraken Desktop
Host type HTTPS SSH Special requirement
TFS Yes Possible May require Basic Authentication on IIS
AWS CodeCommit Yes Yes Requires AWS-specific credentials or SSH setup
Google Cloud Source Repositories Yes Yes Requires the appropriate Google Cloud credentials
Custom Git host Yes Yes Depends on host-specific URL, SSH key, proxy, or certificate setup

Quick Start

To clone with HTTPS:

  1. Copy the HTTPS URL from your hosting service (e.g., https://example.com/username/repo.git).
  2. In GitKraken Desktop, go to File > Clone Repo.
  3. Paste the URL and click Clone the repo.

To set up SSH and clone with SSH:

  1. Go to Preferences > SSH.
  2. Generate a new SSH key pair or browse to an existing one.
  3. Copy the public key and add it to your hosting service’s SSH settings.
  4. Copy the SSH URL from your hosting service.
  5. Go to File > Clone, paste the SSH URL, and click Clone the repo.

To use a local SSH agent instead of managing keys manually, enable Use local SSH agent under Preferences > SSH. To reset stored HTTPS credentials, go to Preferences > General and click Forget All.


How HTTPS authentication works

This is the default and most common method for interacting with remotes. It requires your Git username and password.

Use HTTPS when: you want the simplest setup and your host supports standard username/password or token-based HTTPS access. Use SSH instead when: your environment already relies on SSH keys or you want to avoid repeated HTTPS credential prompts.

How to clone with HTTPS

  1. Copy the HTTPS URL from your hosting service, which typically looks like:

    https://example.com/username/myrepository.git
  2. In GitKraken Desktop, go to File > Clone Repo.

GitKraken Clone Repo Menu
Cloning a repository using HTTPS
  1. Paste the URL, click , and open it in GitKraken.

The remote tracking at origin is automatically set using this HTTPS format.


How SSH authentication works

Before cloning via SSH, you must first set up your SSH keys in GitKraken Desktop.

Use SSH when: your host or team standard is key-based authentication and you want reusable key-based access across repositories. Don’t use SSH when: your environment depends on unsupported `.ssh/config` aliases or SSH-agent behavior GitKraken Desktop cannot honor.

How to set up SSH keys

  1. Navigate to Preferences > SSH.
SSH Preferences Menu
SSH preferences in GitKraken Desktop
  1. You can browse to select an existing SSH key pair or generate a new one (recommended).
  2. Copy the public key to your remote hosting service.

How to clone over SSH

  1. Copy the SSH URL from your hosting service.
  2. In GitKraken Desktop, go to File Clone.
Clone over SSH UI
Cloning a repository using SSH
  1. Paste the SSH URL, click , and open the repo.

Supported SSH formats

ssh://{user}@{host}/{repo}
{user}@{host}:{repo}

Where:

  • {host} is the domain (e.g., example.com)
  • {user} is the username (typically git)
  • {repo} is the path to the repository
Example: [email protected]:org/username/myrepository.git

How to use custom SSH ports

Use this format:

ssh://{user}@{host}:{port}/{repo}

How to use a local SSH agent

Using a local agent can simplify SSH management, especially across multiple profiles. From Preferences > SSH, check Use local SSH agent.

Use a local SSH agent when: your keys are already loaded and you want GitKraken Desktop to reuse them. Don’t use it when: your platform setup depends on agent behavior or alias configuration GitKraken Desktop does not support directly.

Tip: This allows automatic key usage if already loaded in your system’s agent.

How to troubleshoot SSH

  • Windows: Only Pageant is supported. Download from PuTTY’s site.
  • Misconfiguration: Double-check your remote URL format and SSH settings.
  • SSH config files: GitKraken Desktop does not support .ssh/config aliases. Load your key directly or use your OS’s agent.

How to forget all credentials

Reset stored usernames and passwords from Preferences > General:

Forget All Credentials UI
Reset saved credentials

How proxy configuration works

GitKraken Desktop supports proxies for Windows, macOS, and Linux.

How proxy prompts work on Windows

Your system will prompt for proxy credentials when needed.

How proxy prompts work on macOS and Linux

GitKraken Desktop prompts for credentials directly.

On Linux, run with this flag if needed:

--proxy-server=10.200.0.1:8080

How to format Google Cloud Source Repositories SSH URLs

Due to formatting, you may need to adjust SSH URLs:

Original:

ssh://[email protected]@source.developers.google.com:2021/p/test-project-12345/r/Test-Repo-1

Fixed:

ssh://example%[email protected]:2021/p/test-project-12345/r/Test-Repo-1
Have feedback about this article? Did we miss something? Let us know!
On this page