无法在Xcode中添加存储库帐户

时间:2016-07-09 20:42:29

标签: xcode git

我不知道为什么我不能在Xcode中添加存储库帐户。

产品 - 版本 Xcode - 7.3.1 git - 2.8.1 OSX - 10.11.5

screenshot from xcode/preferences/accounts

2 个答案:

答案 0 :(得分:1)

我发现了这个问题。在preverences / source control,"启用源控制"没有检查。检查完成后,我就可以添加我的GitHub远程存储库。

答案 1 :(得分:0)

您可以使用git bash将项目连接到您的存储库,如下所示:

$ cd /your/project/path/
$ git init
$ git remote add origin git@github.com:ali/first_app.git # Or other repo URLs
$ git push -u origin --all # pushes up the repo and it's refs for the first time
$ git push origin --tags # pushes up any tags

希望有用。