用于比较 Xcode 项目文件的工具
我已获得 iOS 应用程序版本 1 和 2 的 Xcode 项目文件。版本 1 可以工作,版本 2 有更多功能但有问题。原来的程序员不再可用。没有使用版本控制系统。
有没有一个工具可以比较不同的项目 - 这样我就可以看到版本 1 和版本 1 之间添加了哪些代码2?
I've been given the Xcode project files for version 1 and 2 of a iOS app. Version 1 is working, version 2 is buggy with more features. The original programmer is no longer available. No versioning system was used.
Is there a tool to compare the different projects - so I can see what code was added between version 1 & 2?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Xcode 提供的 FileMerge 工具来比较两个 Xcode 项目。
以下是 Xcode 6.1 中的比较步骤
通过单击左右按钮选择要比较的两个 Xcode 项目
单击“比较”按钮。这将创建添加、删除或更改的文件列表
通过比较两个 Xcode 项目。
You can compare two Xcode project using FileMerge tool available with Xcode.
Below are steps for comparison in Xcode 6.1
Select two Xcode project which is to be compared by clicking Left and Right button
Click on 'Compare' button. This will create list of file that are added, removed or altered
by comparing two Xcode project.
我非常确定 xcode 项目中的几乎所有内容都存储在文本文件中,因此您应该能够使用标准 diff 工具来比较项目。当然,这不包括图像、音频等资源。
FileMerge 是一个应用程序Apple 的开发者工具附带。它进行差异和合并。它可以通过终端运行
opendiff
命令。I'm pretty sure that nearly everything in an xcode project is stored in text files so you should be able to use standard diff tools to compare the projects. This, of course, excludes resources such as images, audio, etc.
FileMerge is an app that comes with Apple's Developer tools. It does diffs and merges. It can be run through the terminal with the the
opendiff
command.