I am trying to push a git repo from PowerShell into an Azure DevOps repo, and I keep getting different auth errors when trying to push it.
I am hoping somebody can sh
This worked for me
adding a config file in ~/.ssh/
~/.ssh/
and adding these lines
Host ssh.dev.azure.com IdentityFile ~/.ssh/my_ssh_private_key IdentitiesOnly yes
This link by @wcoder helped