git not using ssh key code example
Example 1: git not using ssh key
ssh -T git@github.com #Check if you are authenticated via key
git remote set-url origin git@github.com:username/repo.git #inside your project
Example 2: git clone ssh key
ssh-agent bash -c 'ssh-add /somewhere/yourkey; git clone git@github.com:user/project.git'