如何在创建时最初未使用 git 的现有 Xcode 项目上开始使用 git?
How do I start using git on an existing Xcode project that didn't initially use git when it was created?
我在 Whosebug 上发现了几篇关于同样问题的帖子,但所有这些帖子的最新答案可以追溯到 2019 年 7 月的这个post。
这个答案是否仍然是一个好的答案并且是完整的和最新的?
我特指this answer by Vikram Sinha我在下面写的。这是我在 Whosebug 上找到的所有答案中给出的最新答案。
Note:Specially for Xcode 11
CD to project directory using terminal
git init
git add .
git commit -m "Initial commit"
After this restart the Xcode and choose Source >Control Navigator and then select the master and >right click then choose option "Create Remote"
在 Xcode 中选择源代码管理 > 新建 Git 存储库为现有 Xcode 项目创建 git 存储库。
我在 Whosebug 上发现了几篇关于同样问题的帖子,但所有这些帖子的最新答案可以追溯到 2019 年 7 月的这个post。
这个答案是否仍然是一个好的答案并且是完整的和最新的?
我特指this answer by Vikram Sinha我在下面写的。这是我在 Whosebug 上找到的所有答案中给出的最新答案。
Note:Specially for Xcode 11
CD to project directory using terminal
git init
git add .
git commit -m "Initial commit"
After this restart the Xcode and choose Source >Control Navigator and then select the master and >right click then choose option "Create Remote"
在 Xcode 中选择源代码管理 > 新建 Git 存储库为现有 Xcode 项目创建 git 存储库。