Skip to content

Azure DevOps Repository

Endi S. Dewata edited this page Sep 28, 2022 · 1 revision

Overview

The JSS repository on Azure DevOps is located at https://dev.azure.com/dogtagpki/jss.

Accessing Azure DevOps Repository

Add your RSA SSH public key to dogtagpki organization (not your personal account).

Configure SSH to use RSA key in ~/.ssh/config (make sure the permission is 600):

Host ssh.dev.azure.com
  PubkeyAcceptedKeyTypes=ssh-rsa

Add a remote in the local JSS repository:

$ git remote add azure git@ssh.dev.azure.com:v3/dogtagpki/jss/jss

Fetch the repository:

$ git fetch azure

If there is a problem, try:

$ GIT_SSH_COMMAND="ssh -v" git fetch azure

See Also