Where is Snapshot ? How Create Snapshot ?

In the old version of X Code was possible to make snapshots, how can I save versions of the project and then go backward ?

Version Editor not work ! Loading Revision run infinite ! NoT Show me nothing !

I looked into setting X Code location, snapshot is setting, but in folder there are files saved project versions, but only those of the old project created with older versions of X Code.



Which solution is possible?

Snapshots were removed in Xcode 7. Use version control to track the files in your project. Xcode supports git and Subversion. I recommend using git.


The easiest way to use version control in Xcode is to create a new project. When you create a new project Xcode will give you the option to create a git repository. If you have an existing project, go to the Terminal, navigate to your project folder, and run the git init command to create a git repository for your project.


Keep in mind that Xcode does not support going backward in the repository. There are a bunch of Mac GUI clients available for git. Source Tree is free and lets you go back to a previous version of your project.

Thank very much!

I tried work fine now !

and

For posterity - in the menu at the top select "SourceControl" then "Commit...", add a comment and "Commit X Files" then after you make additional changes and want to see the changes select "SourceControl" and "Commit" and select the file on the left.



All explained nicely in :

www (dot) raywenderlich (dot) com /51351/how-to-use-git-source-control-with-xcode-in-ios-7

Where is Snapshot ? How Create Snapshot ?
 
 
Q