I have a repo for my testing site in bitbucket
SSH
git@bitbucket.org:rkim/rkim-app.git
My current git config file
cat .git/config
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[remote "origin"]
url = git@bitbucket.org:rkim/rkim-app.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master
[credential]
helper = store
git config --list
user.name=Ryan Kim
user.email=rkim@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:rkim/rkim-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 tried all the suggestions in here, and still got prompt to enter my passphrase.
git pull
Enter passphrase for key '/root/.ssh/id_rsa':
Let me know if anything else I can provide.
Can someone please put an end to this ?
Anythings elses, I should look into ?
Do I need to restart my SSH service or my VM ?