I've been trying to setup my forward agent on my device so I can Git commit & git push from a remote server.
I go through the normal commands to get setup:
ssh-agent eval "$(ssh-agent)" ssh-add
ssh-agent
eval "$(ssh-agent)"
ssh-add
If iI do ssh-add -lssh-add -l on my local machine I can see both keys have been added.
I then go to ssh to my server, e.g - ssh server.compang.co.uk -Assh server.compang.co.uk -A
And now if iI do ssh-add -l issh-add -l I get the following error with my two keys listed below "RSA & DSA":
error fetching identities for protocol 1: agent refused operation
error fetching identities for protocol 1: agent refused operation
Any thoughts on how to get around this? As imI'm running out of ideas.