Xcode并禁用与已存在的Git文件夹的持续集成

时间:2014-11-30 13:34:15

标签: xcode git continuous-integration

我正在为我的多平台项目添加iOS支持。文件夹结构如下所示:

/.git
/android (stores Android Visual Studio project files)
/source (stores all source)
/source/android (Android-specific source)
/source/windows (Windows-specific source)
/windows (stores Windows Visual Studio project files)

我添加了一个带有Xcode项目的新/ ios文件夹,以及一个用于iOS特定代码的新/ sources / ios文件夹。但是,Xcode项目似乎正在检测.git文件夹并自动提交文件(它自己修改的文件,例如替换行尾字符)并修改索引,当我不想要它甚至看起来那么多在它。我无法找到一种方法来禁用Xcode中的持续集成,有什么我可以忽略的吗?

1 个答案:

答案 0 :(得分:1)

This曾经是xcode 4的解决方法,但在xcode 6(以及5也是AFAIK)中,禁用git integration是一个内置选项。

转到偏好设置

enter image description here

转到“源代码管理”选项卡

enter image description here

取消选中'启用源代码管理'
你会希望屏幕看起来像这样

enter image description here