Created
October 20, 2019 04:42
-
-
Save johnkors/f5bb409056934ad289517e3611161bd9 to your computer and use it in GitHub Desktop.
SSH config working with Azure DevOps and others
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
# https://docs.microsoft.com/en-us/azure/devops/repos/git/use-ssh-keys-to-authenticate?view=azure-devops#i-have-multiple-ssh-keys--how-do-i-use-different-ssh-keys-for-different-ssh-servers-or-repos | |
Host ssh.dev.azure.com | |
AddKeysToAgent yes | |
UseKeychain yes | |
IdentityFile ~/.ssh/id_rsa.azureaccount | |
IdentitiesOnly yes | |
User git | |
Host * | |
AddKeysToAgent yes | |
UseKeychain yes | |
IdentityFile ~/.ssh/id_rsa | |
IdentitiesOnly yes | |
User git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
UseKeychain yes - isn't working now