Eu tenho minha máquina, com sua chave ssh.
a chave pública está na máquina remota do git.
Eu consigo conectar-me facilmente à máquina Git com um simples terminal ssh.
O problema é quando eu executo um "git pull" ele ainda me pede a senha do usuário, embora eu tenha a chave instalada e funcione corretamente no terminal simples.
Alguma idéia?
exemplos:
.git/config //file
[remote "origin"]
url = ssh://[email protected]/var/git/lps.git
fetch = +refs/heads/*:refs/remotes/origin/*
~/.ssh/config
Host git
HostName git.oursite.com
User myUsername
IdentityFile ~/.ssh/git
//now the ssh the works good on terminal -->
ssh git
//and the simple git actions that still ask for permissions
git fetch