是否有某种技巧可以通过SSH克隆bitbucket项目,因此您不必每次都手动输入密码?
我试过跟随 他们的文档 我能够达到跑步的程度 ssh -T git@bitbucket.org
报告成功。
我的Bitbucket项目页面报告我的SSH URL是:
git@bitbucket.org:myaccount/myproject.git
但是,当我跑:
git init
git remote add origin ssh://git@bitbucket.org:myaccount/myproject.git
git pull origin master
它失败并出现错误:
conq: invalid repository syntax.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
我究竟做错了什么?
我猜你已经读过了 题 ?
—
Ramhound