I'm trying to by pass the password prompt every time I run git pull
.
I'm running on Ubuntu. This is my Git config:
git config --list
user.name=Benlong Heng
user.email=benlongheng@outlook.com
credential.helper=cache --timeout=3600
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
remote.origin.url=git@bitbucket.org:benlongheng/benlong-web-app.git
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
branch.master.remote=origin
branch.master.merge=refs/heads/master
credential.helper=store
I've been following this answer, and for some reason, I still keep getting the prompt after running git pull
:
$ git pull
Enter passphrase for key '/root/.ssh/id_rsa':
Am I missing something? Any hints?