Save / export entire project in Xcode

Is there a way to export or save the whole project in xcode? Or do I need to manually save the project containing the folder? Thanks

+4
source share
2 answers

I wrote a program, and I want to write it further, but I want to keep this version.

You want an Xcode snapshot object.

+11
source

Just copy the entire project folder and rename it to the desired location. Files are stored in one large folder, so there is no need to export it or even save it as.

I do this often to create backups.

Another alternative is to implement some kind of SCM system, such as Mercurial or SVN , and then branch it or clone the solution. It also gives you the option of rolling back, etc., if necessary.

+6
source

Source: https://habr.com/ru/post/1336302/


All Articles