github - Git clone not working for ssh or https but is working for http -
does have clue why happening.
when go clone using:
git clone ssh-url
it says cloning 'url'...
never anything.
i can clone http. figure out why happening.
edit: also, using mysysgit.
update: tried reradding ssh keys github , ran ssh -t git@github.com test if worked. following resulkting output:
permissions 0660 '/home/thebo_000/.ssh/id_rsa' open. required private key files not accessible others. private key ignored. bad permissions: ignore key: /home/thebo_000/.ssh/id_rsa permission denied (publickey).
your ssh key should have permission 600. otherwise ssh not accept private key out of security precautions. key, decrypt data send github, encrypted public key.
you can fix doing:
chmod 600 ~/.ssh/id_rsa
this should settle issue.
on unix permissons (with ls -l) should this:
-rw--------
Comments
Post a Comment