【发布时间】:2017-07-26 16:22:14
【问题描述】:
我在 bitbucket 中有一个用于我的测试站点的 repo
SSH
git@bitbucket.org:rkim/rkim-app.git
我当前的 git 配置文件
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
我已经尝试了here 中的所有建议,但仍然提示输入我的密码。
git 拉
输入密钥“/root/.ssh/id_rsa”的密码:
如果还有什么我可以提供的,请告诉我。
有人可以结束这个吗?
还有什么,我应该研究一下?
我需要重新启动我的 SSH 服务或我的虚拟机吗?
【问题讨论】:
标签: linux git ubuntu ssh bitbucket