Skip to content

Instantly share code, notes, and snippets.

@FilBot3
Created March 16, 2022 21:43
Show Gist options
  • Select an option

  • Save FilBot3/ca9e755c5cb77b28cee3ce7f5ba7a683 to your computer and use it in GitHub Desktop.

Select an option

Save FilBot3/ca9e755c5cb77b28cee3ce7f5ba7a683 to your computer and use it in GitHub Desktop.
How to connect to Azure DevOps Git Repos using SSH on Fedora with no passphrase
Host ssh.dev.azure.com
HostName ssh.dev.azure.com
User git
IdentityFile /home/user01/.ssh/azdo_id_rsa
IdentitiesOnly yes
PubkeyAcceptedKeyTypes ssh-rsa
Host vs-ssh.visualstudio.com
HostName vs-ssh.visualstudio.com
User git
IdentityFile /home/user01/.ssh/azdo_id_rsa
IdentitiesOnly yes
PubkeyAcceptedKeyTypes ssh-rsa
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment