Created
March 16, 2022 21:43
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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