Answers for "git not using ssh key"

1

git not using ssh key

ssh -T [email protected]  #Check if you are authenticated via key
git remote set-url origin [email protected]:username/repo.git   #inside your project
Posted by: Guest on April-02-2021
2

git clone ssh key

ssh-agent bash -c 'ssh-add /somewhere/yourkey; git clone [email protected]:user/project.git'
Posted by: Guest on October-02-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language