Fix git to work with pageant keys

c33s

Julian

Posted on November 5, 2019

Fix git to work with pageant keys

after an update my git clones failed with a permission denied.



λ git clone --no-checkout ssh://git@gitlab.com/your-user/your-project.git
Cloning into 'your-project'...
git@gitlab.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.


Enter fullscreen mode Exit fullscreen mode

i am not sure if its because of having installed putty in Program Files which have a space in it but the solution for
me was to create an environement variable named GIT_SSH_COMMAND with the value "C:\Program Files\Putty\plink.exe"
(you need the double quotes " in the value!).

Alt Text

after this cloning works again.

side tip: i use Rapid Environment Editor to modify my environement variables.

links:

💖 💪 🙅 🚩
c33s
Julian

Posted on November 5, 2019

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related