I've encountered a challenge while trying to connect (clone) to my Azure DevOps repository via SourceTree.
1 - I used the PowerShell command ssh-keygen to generate an SSH key on my computer. The command generated two files in my selected folder: one for the private key that has no extension, and one for the public key with a .pub extension. The public key starts with
ssh-rsa AAAAB3NzaC1yc2EA....
, and the private key file is in the expected format, starting with
-----BEGIN OPENSSH PRIVATE KEY----- and ending with -----END OPENSSH PRIVATE KEY-----.
However, SourceTree seems to only accept Putty (.ppk) keys, and my keys generated by ssh-keygen don't meet that criteria.
I attempted to use these SSH keys with SourceTree by going to
"Tools > Import SSH Keys,"
but SourceTree did not recognize my key files. It appears that SourceTree is looking for keys in the .ppk format, which I don't have.
Is there a way to convert the SSH key from ssh-keygen to a format that SourceTree accepts, or should I generate new keys in a compatible format?
I'm seeking guidance on how to proceed so I can use SourceTree to manage my Azure DevOps repository using SSH keys.
Thank you in advance for your help!
You should change the SSH Client configuration
on sourcetree from PuTTY/Plink
to OpenSSH
to use the keys generated from powershell.
Steps as below:
On SoureTree -> Tools -> Options -> General tab, change to OpenSSH
, select the isa key generated above -> click ok to save.
open the public key file(.pub), copy the content, and input it to DevOps.
On DevOps repo, copy the SSH
URL and paste to sourcetree.
In addition, if you encounter some connection error on sourcetree, change to use embedded git for a try.