edit | blame | history | raw

Using the SSH transport

SINCE 1.5.0

The SSH transport is a very exciting improvement to Gitblit. Aside from offering a simple password-less, public key workflow the SSH transport also allows exposes a new approach to interacting with Gitblit: SSH commands. The Gerrit and Android projects have to be thanked for providing great base SSH code that Gitblit has integrated.

Cloning & Pushing

By default, Gitblit serves the SSH transport on port 29418, which is the same as Gerrit. Why was 29418 chosen? It's likely because it resembles the IANA port assigned to the git protocol (9418).

Gitblit will authenticate using username/password or public keys.

git clone ssh://<username>@<hostname>:29418/myrepository.git

Setting up your account to use public key authentication

Public key authentication allows you to operate in a password-less workflow and to separate your web login credentials from your git credentials. Setting up public key authentication is very simple. If you are working on Windows you'll need to install Git for Windows.

First you'll need to create an SSH key pair, if you don't already have one or if you want to generate a new, separate key.

ssh-keygen

Then you can upload your public key right from the command-line.

cat ~/.ssh/id_rsa.pub | ssh -l <username> -p 29418 <hostname> gitblit add-key
cat c:\<userfolder>\.ssh\id_rsa.pub | ssh -l <username> -p 29418 <hostname> gitblit add-key

NOTE: It is important to note that ssh-keygen generates a public/private keypair (e.g. id_rsa and id_rsa.pub). You want to upload the public key, which is denoted by the .pub file extension.

Once you've done both of those steps you should be able to execute the following command without a password prompt.

ssh -l <username> -p 29418 <hostname> gitblit version

Setting up an SSH alias

Typing the following command syntax all the time gets to be rather tedious.

ssh -l <username> -p 29418 <hostname> gitblit version

You can define an alias for your server which will reduce your command syntax to something like this.

ssh <alias> gitblit version

Create or modify your ~/.ssh/config file and add a host entry. If you are on Windows, you'll want to create or modify <userfolder>\.ssh\config, where userfolder is dependent on your version of Windows. Most recently this is c:\users\<userfolder>.

Host <alias>
    IdentityFile ~/.ssh/id_rsa
    User <username>
    Port 29418
    HostName <hostname>

SSH Commands

git

You will likely never directly interact with the git command, but it is used by your git client to clone, fetch, and push commits to/from your Gitblit server.

git-receive-pack

This is the command for processing pushes sent from clients.

git-upload-pack

This is the command for sending refs and commits to clients.

gitblit

The gitblit command has many subcommands for interacting gitblit.

add-key

Add an SSH public key to your account. This command accepts a public key piped to stdin.

cat ~/.ssh/id_rsa.pub | ssh -l <username> -p 29418 <hostname> gitblit add-key
rm-key

Remove an SSH public key from your account. This command accepts a public key piped to stdin.

cat ~/.ssh/id_rsa.pub | ssh -l <username> -p 29418 <hostname> gitblit rm-key

You can also remove all your public keys from your account.

ssh -l <username> -p 29418 <hostname> gitblit rm-key ALL