Signing back into the Community for the first time? You'll need to reset your password to access your account. Find out more.
Forum Discussion
Former Member
3 years agoGit and Azure DevOPS: agent refused operation
I struggle getting my GIT repositories in Azure working with 1Password keeping my SSH keys. Beside that Azure does not support Ed25519 keys (sigh), so I had to create a RSA key for it, authentication...
Former Member
3 years agoUpdate. Don't know why, but my workaround stopped working.
New workaround that is working currently:
Define the following above the IdentityAgent definition, so the ~/.ssh/config
should look like this:
Host ssh.dev.azure.com
HostName ssh.dev.azure.com
User git
IdentityFile ~/.ssh/id_rsa
PubkeyAcceptedAlgorithms +ssh-rsa
HostkeyAlgorithms +ssh-rsa
IdentitiesOnly yes
IdentityAgent /dev/null
Host *
IdentityAgent ~/.1password/agent.sock
AddKeysToAgent yes