我已经为bitbucket帐户启用了两个因素身份验证。现在,app在Osx上的Sourcetree应用程序不起作用,它无法在bitbucket上登录。
我如何配置SourceTree来使用bitbucket双因子?
发布于 2015-09-14 18:51:32
发布于 2015-11-30 21:27:40
跳过初始登录,从bitbucket.org,单击回购名称旁边的向下箭头( ssh/https链接左侧),单击“克隆到源树”,如果您已经设置了ssh键,它就会工作得很好。
这对我很好,当我刚刚安装它,并遇到相同的问题,不允许我一开始登录。
-2016年6月更新
Bitbucket现在允许您为特定的应用程序(如源树)添加应用密码。它可以在bitbucket设置>访问管理>应用程序密码下找到。一旦我创建了一个密码并将密码添加到我的源树设置中,我就能够成功地连接和重新连接到bitbucket,以推拉更新和创建新的repos。
发布于 2016-03-07 14:35:32
疯狂。Sourcetree 支持Github,但不包括BitBucket:
更新
@markyk评论说:
亚特兰西安的任务已经“结束”,并没有增加支持的意图。有一个评论“用户应用程序密码”作为一项工作,这是不理想的。
原始问题(已结束)
bitbucket/two-step-verification-777023203.html#Two-stepverification-ConfirmapplicationsuseSSH
解决办法
实际上,这意味着在bitbucket网站上创建回购,然后单击“我有一个现有的项目”,并将显示的git命令复制到终端中,如下所示:
cd /path/to/my/repo
git remote add origin git@bitbucket.org:username/repo.git
git push -u origin --all # pushes up the repo and its refs for the first time
git push -u origin --tags # pushes up any tags
然后(刷新后) Sourcetree将显示您的新遥控器。
https://stackoverflow.com/questions/32569839
复制相似问题