I am SSHing into a server using putty I have set-up putty with pageant to allow key forwarding.

this set-up works absolutely fine and when I run 'svn up' the update runs fine.

but if I start running gnu-screen 'screen -DR' when I run 'svn up' it starts asking for my password for the svn server.

Has anyone else had this problem? Any ideas where the issue might be?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

in your ~/.subversion/config file, under [tunnels], add

ssh = $SVN_SSH ssh -q -l (your username) -i (path to your key)

e.g., I have

ssh = $SVN_SSH ssh -q -l cjbrown -i /home/cjbrown/.ssh/id_dsa
link|improve this answer
That worked thanks. Would be interested to find out why screen stops the key forwarding working if any one knows. – Braddle Jul 11 '11 at 13:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.