问题描述
我一直在项目上使用源代码控制,但现在我不想使用源代码控制。如何从Xcode 5中的项目中移除源代码控制?
有三种方法。方法1将禁用所有项目的源代码管理。方法2将删除所有项目的单个存储库的链接。方法3将删除单个项目的存储库链接。我认为方法3是您正在寻找的方法。
1:通过源代码管理首选项
Xcode,选择 Xcode->首选项,然后选择源代码管理,然后取消选中启用源代码管理选项。
2:进入 Xcode-> Preference-> Accounts-> Repositories 并删除它们。 b
3:您可以手动手动此方式:并删除所有 .svn
或 .git
或 .tf
文件(根据源代码管理)文件夹。
示例svn目录:
I've been using source control on a project for awhile, but now I don't want to use source control. How do you remove source control from a project in Xcode 5?
There are three ways. Method 1 will disable source control for all projects. Method 2 will delete the link to a single repository for all projects. Method 3 will remove the link to a repository for a single project. I think Method 3 is the one you are looking for.
1: Through Source Control Management Preferences
In Xcode, choose Xcode-> Preferences, then select Source Control and uncheck Enable Source Control option.
2: Go to Xcode->Preference->Accounts->Repositories and delete them.
3: You can do it manually this way: Show Hidden Files on your Mac and delete all the .svn
or .git
or .tf
files (according to the source control) folders from the project.
Example svn directory:
这篇关于Xcode 5 - 删除项目的源代码管理的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!