iOS:如何备份项目?
备份项目的最佳方法是什么?
更具体地说:我有一个 DropBox 帐户,并且我更喜欢在那里拥有该项目的副本。
我想我应该复制所有 h+m 文件。
我可以复制所有 xib 文件吗?这有什么意义吗?
我可以/应该复制用作资源的所有 jpg/png/mp3 文件吗?
有没有正确的方法可以做到这一点,例如“备份项目”按钮,我可以在其中选择目标并以某种智能方式压缩项目?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要所有这些以及项目文件等。查看项目文件以查看引用的所有文件。通过制作副本并尝试从副本进行构建来检查您是否拥有所有内容。如果您错过任何事情,您会收到投诉。
You need all of those and the project files, etc. Look in the project file to see all files referenced. Check to see if you have everything by making a copy and trying to build from the copy. You'll get complaints if you missed any thing.
备份项目的最佳方法是源代码控制。有很多选项可以获取免费或非常便宜的远程源代码控制存储库,您可以在其中存储源代码的副本(和历史记录)。查看 http://www.beanstalkapp.com 或 http://www.github.com 首先。
The best way to backup a project is source control. There are many options available to get free or very cheap remote source control repositories where you can store a copy (and history) of your source. Checkout http://www.beanstalkapp.com or http://www.github.com for a start.
最好的办法是复制所有项目所在的整个目录。将此目录复制到您的保管箱文件夹中。要打开项目,请使用 xcode 打开 yourproject.xcodeproj。
虽然这种方法一次是可以的,或者当您是项目中唯一的人时,但从长远来看,您应该考虑尝试采用源代码控制版本控制系统,例如 GIT. Xcode 具有出色的集成与胃肠道。
希望这有帮助...
Best thing is to copy the entire directory where all your project exists. Copy this directory to your dropbox folder. To open the project open yourproject.xcodeproj with xcode.
Although this method is okay for one time thing or when you are the only one working on your project but in the long run you should look at trying to adopt a source control versioning system like GIT. Xcode has wonderful integration with GIT.
Hope this helps...