Skip to main content

Xcode 7: No More Snapshots

·1 min

You can no longer take snapshots of your projects in Xcode 7. Use version control to track changes in your projects.

The easiest way to start with version control is to create a new Xcode project. When you are asked where to save the project, there is a checkbox to create a local git repository.

If you have an existing project you want to place under version control, start by launching the Terminal application. Navigate to your project’s directory. Run the git init command to create a git repository for your project and place it under version control.

If you need more information on using version control with Xcode, read the version control chapter of Xcode Tools Sensei, which you can find a link to by reading my post Xcode 5: Version Control Changes.