XCode 连接 Bitbucket

第一步:在Bitbucket创建仓库。

第二步:1. 命令行,切换到项目根目录;

             2. 执行:git init;

            3. 执行:git remote add origin [email protected]:用户名/仓库名称.git;(在Bitbucket的项目概览右上角查看);

            4. 执行:git commit -m "Initial commit";

            5. 执行:git push -u origin master。

源代码提交完成,在xcode中即可使用Source Control进行操作。

你可能感兴趣的:(XCode 连接 Bitbucket)