46
24
I'm ssh into a remote host (linux, fedora) and I want to do ssh operation(git with bitbucket) there. There is ssh-agent running on that machine,
$ ps -e|grep sh-agent
2203 ? 00:00:00 ssh-agent
but when I want to git, it requires me to enter the passphrase
$ git pull
Enter passphrase for key '/user/wgong/home/.ssh/id_rsa':
Note: if I operate on that machine locally, it won't ask me to enter the passphrase
1I haven't used it but there's a command ssh-add that I think is used for that kind of thing – barlop – 2015-10-18T03:38:58.970