Xcode 9 - 从Bitbucket克隆 - 如何更改用户名?

时间:2017-10-04 19:37:05

标签: git bitbucket clone xcode9

我刚从旧系统向bitbucket存储库添加了一个应用程序。这很好,但是我遇到了一个问题,将它克隆到我的新系统,运行Xcode 9的MacBook Pro。为了克隆它,我到目前为止已经按照这些步骤进行了操作:

1. Open Xcode, select "Source Control", then "Clone". 
2. Paste the bitbucket address into the address.
3. After the verification, it displays the address, type (git) and Login (defaults to "anonymous") 
4. Select "User name and Password" instead of "anonymous".
5. It displays a username which is the name of the project and grayed out, and a password.
6. Since I can't enter the username for my bitbucket account (my email address), I alway get an "authentication failed".

我根据Google的一些建议尝试了以下内容,但到目前为止没有运气:

git config --global user.name "myname"
git config --global user.email "myemail"

xcrun git config --global user.name 'myname'
xcrun git config --global user.email 'myemail'

有什么想法吗?我只需要能够更改用户名来克隆它,但它已经变灰了。

1 个答案:

答案 0 :(得分:0)

您无法更改用户名,因为要克隆的URL以https://git@bitbucket.org开头。.

尝试按照以下步骤从bitbucket克隆存储库

  1. 复制您的回购链接
  2. 从源代码管理中打开XCode->项目
  3. 打开一个对话框,将URL粘贴到文本框中
  4. 从链接中删除用户名,以便回购的网址类似于https://bitbucket.org ...
  5. 输入您的用户名和密码
  6. 利润