Błędy odmowy (publickey) w systemie Windows podczas korzystania z Moovweb

Jestem w stanie uwierzytelnić się, wygenerować, wypchnąć itd. Z moimi kluczami SSH i poświadczeniami Moovweb na moich komputerach Mac i Linux.

Jednak na moim komputerze z systemem Windows, używając Git Bash, otrzymuję SSHPermission denied (publickey) błąd. Komunikat o błędzie znajduje się poniżej:

$> moov generate 123dsfsdsf nytimes.com
Running environment checks.
Verifying that git is installed...OK
Checking that current 123dsfsdsf directory doesn't exist...OK
Registering project with MoovCloud.
Authenticating with MoovCloud.
Checking for git access...Enter passphrase for key '/Users/firstname.lastname/.ssh/id_rsa':
Enter passphrase for key '/Users/firstname.lastname/.ssh/id_rsa':
FAILED
> Need to upload an ssh key in order to generate a project...
Found the following SSH public keys:
1 ) id_rsa.pub
2 ) new_rsa.pub
Which would you like to use with your Moovweb account? 2
Uploading public key...
Successfully uploaded public key new_rsa.pub as '[email protected]'
You are now ready to push projects to MoovCloud!
Creating project in MoovCloud...OK
Generating files...OK
Cloning project locally.
Enter passphrase for key '/Users/firstname.lastname/.ssh/id_rsa':
Enter passphrase for key '/Users/firstname.lastname/.ssh/id_rsa':
Cloning into '123dsfsdsf'...
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
ERROR:   Error cloning git repo: exit status 128
Please try cloning the repository (git clone [email protected]:firstnameglastname/123dsfsdsf.git) again later.
Try 'moov help generate' to find out details.
gt; moov generate 123dsfsdsf nytimes.com Running environment checks. Verifying that git is installed...OK Checking that current 123dsfsdsf directory doesn't exist...OK Registering project with MoovCloud. Authenticating with MoovCloud. Checking for git access...Enter passphrase for key '/Users/firstname.lastname/.ssh/id_rsa': Enter passphrase for key '/Users/firstname.lastname/.ssh/id_rsa': FAILED > Need to upload an ssh key in order to generate a project... Found the following SSH public keys: 1 ) id_rsa.pub 2 ) new_rsa.pub Which would you like to use with your Moovweb account? 2 Uploading public key... Successfully uploaded public key new_rsa.pub as '[email protected]' You are now ready to push projects to MoovCloud! Creating project in MoovCloud...OK Generating files...OK Cloning project locally. Enter passphrase for key '/Users/firstname.lastname/.ssh/id_rsa': Enter passphrase for key '/Users/firstname.lastname/.ssh/id_rsa': Cloning into '123dsfsdsf'... Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. ERROR: Error cloning git repo: exit status 128 Please try cloning the repository (git clone [email protected]:firstnameglastname/123dsfsdsf.git) again later. Try 'moov help generate' to find out details.

Wydaje się, że jest to błąd SSH specyficzny dla systemu Windows. Jakieś obejścia?

questionAnswers(2)

yourAnswerToTheQuestion